Skip to content

Commit 60d2e86

Browse files
Remove another errant $ when defining registryId
1 parent 516febd commit 60d2e86

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/container-instances/container-instances-github-action.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ In the GitHub workflow, you need to supply Azure credentials to authenticate to
5151
First, get the resource ID of your resource group. Substitute the name of your group in the following [az group show][az-group-show] command:
5252

5353
```azurecli
54-
$groupId=$(az group show \
54+
groupId=$(az group show \
5555
--name <resource-group-name> \
5656
--query id --output tsv)
5757
```
@@ -91,7 +91,7 @@ Update the Azure service principal credentials to allow push and pull access to
9191
Get the resource ID of your container registry. Substitute the name of your registry in the following [az acr show][az-acr-show] command:
9292

9393
```azurecli
94-
$registryId=$(az acr show \
94+
registryId=$(az acr show \
9595
--name <registry-name> \
9696
--query id --output tsv)
9797
```

0 commit comments

Comments
 (0)