Skip to content
This repository was archived by the owner on Jan 21, 2026. It is now read-only.

Commit 7317915

Browse files
authored
Merge pull request #260 from markpatterson27/patch-escape-double-curly-brackets
Escape double curly brackets in code blocks
2 parents 12983c0 + f6990a6 commit 7317915

1 file changed

Lines changed: 12 additions & 11 deletions

File tree

Instructions/Labs/AZ400_M03_L07_Implementing_GitHub_Actions_by_using_DevOps_Starter.md

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -116,17 +116,18 @@ In this task, you will review the results of creating the DevOps Starter project
116116
1. In the **All workflows** section, click the **Update Index.cshtml** entry.
117117
1. In the **devops-starter-workflow.yml** section, monitor the progress of deployment and verify that it completed successfully.
118118
> **Note**: If the **action using "azure/CLI@1" fails**, commit the following change to the **devops-starter-workflow.yml** file (change the default azure cli version) and verify it completes successfully:
119-
120-
```
121-
- name: Deploy ARM Template
122-
uses: azure/CLI@v1
123-
continue-on-error: false
124-
with:
125-
azcliversion: 2.29.2
126-
inlineScript: |
127-
az group create --name "${{ env.RESOURCEGROUPNAME }}" --location "${{ env.LOCATION }}"
128-
az deployment group create --resource-group "${{ env.RESOURCEGROUPNAME }}" --template-file ./ArmTemplates/windows-webapp- template.json --parameters webAppName="${{ env.AZURE_WEBAPP_NAME }}" hostingPlanName="${{ env.HOSTINGPLANNAME }}" appInsightsLocation="${{ env.APPINSIGHTLOCATION }}" sku="${{ env.SKU }}"
129-
```
119+
> <!-- {% raw %}) -->
120+
> ```
121+
> - name: Deploy ARM Template
122+
> uses: azure/CLI@v1
123+
> continue-on-error: false
124+
> with:
125+
> azcliversion: 2.29.2
126+
> inlineScript: |
127+
> az group create --name "${{ env.RESOURCEGROUPNAME }}" --location "${{ env.LOCATION }}"
128+
> az deployment group create --resource-group "${{ env.RESOURCEGROUPNAME }}" --template-file ./ArmTemplates/windows-webapp-template.json --parameters webAppName="${{ env.AZURE_WEBAPP_NAME }}" hostingPlanName="${{ env.HOSTINGPLANNAME }}" appInsightsLocation="${{ env.APPINSIGHTLOCATION }}" sku="${{ env.SKU }}"
129+
> ```
130+
> <!-- {% endraw %}) -->
130131
131132
1. Switch to the browser window displaying the DevOps Starter blade in the Azure portal and click the **Browse** link next to the **Application endpoint** entry.
132133
1. In the newly opened web browser window, verify that the updated text representing the change you committed in the GitHub repo is displayed on the web app home page.

0 commit comments

Comments
 (0)