Skip to content

Commit a40e470

Browse files
committed
edits
1 parent 8e20007 commit a40e470

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/7-exercise-add-preview-stage-pipeline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Next, you'll configure the **Deploy** stage to run against the **Website** envir
7070

7171
:::code language="yaml" source="code/7-pipeline.yml" range="61-82" :::
7272

73-
Notice that you defined a new `checkout` step. Unlike normal jobs, deployment jobs need to be configured to check out (download) the files from your Git repository. If you don't include this step, the deployment job won't be able to read your Bicep file. You could instead consider using _pipeline artifacts_ to send files between pipeline stages. The summary includes a link to more information about artifacts.
73+
Notice that you defined a new `checkout` step. Unlike normal jobs, deployment jobs need to be configured to check out (download) the files from your Git repository. If you don't include this step, the deployment job won't be able to read your Bicep file. You could instead consider using _pipeline artifacts_ to send files between pipeline stages. The module summary includes a link to more information about artifacts.
7474

7575
1. Save the file.
7676

@@ -110,7 +110,7 @@ Next, you'll configure the **Deploy** stage to run against the **Website** envir
110110

111111
1. Select the **Run what-if** step to inspect the changes that the what-if command reports on.
112112

113-
1. Notice that the pipeline log provides what-if results that are similar to the following code:
113+
1. Notice that the pipeline log provides what-if results that are similar to the following output:
114114

115115
:::code language="output" source="code/7-what-if-output.txt" :::
116116

learn-pr/azure/test-bicep-code-using-azure-pipelines/includes/9-exercise-add-test-stage-pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The test script that you created in the preceding steps requires a host name to
3434

3535
1. In the **Deploy** stage, update the deployment step to publish the outputs to a variable:
3636

37-
:::code language="yaml" source="code/9-pipeline.yml" range="71-82" highlight="12" :::
37+
:::code language="yaml" source="code/9-pipeline.yml" range="71-82" highlight="11" :::
3838

3939
Your deployment process still uses the same task as it did previously, but the outputs from the deployments are now stored in a pipeline variable named `deploymentOutputs`. The output variable is formatted as JSON.
4040

0 commit comments

Comments
 (0)