Commit 8568d436 authored by Ian Ernst's avatar Ian Ernst
Browse files

Fixes Broken Deploy Stage Addition

parent 02e7c721
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -138,16 +138,16 @@ include:

1. After committing your changes, navigate to the pipeline created for your commit. You will now see a new job named *component-job*. This job is the custom job we have imported using the `include` keyword.

1. Let's try overriding the stage to instead run in the deploy stage by adding the following to the `.gitlab-ci.yml` file:
1. Let's try overriding the stage to instead run in the build stage by adding the following to the `.gitlab-ci.yml` file:

    ```yaml
      include:
        - component: $CI_SERVER_FQDN/training-users/session-0a9ee9b9/iu6t0rjr/example-component/sample-template@v0.36.0
          inputs:
            stage: deploy
            stage: build
    ```

1. Select **Commit changes**, and watch as your *component-job* now runs in the deploy stage.
1. Select **Commit changes**, and watch as your *component-job* now runs in the build stage.

## Lab Guide Complete