Skip to content

Commit 86b4453

Browse files
authored
Add missing $
This avoids this error message: "The term 'groupId=$(az group show --name <my-name> --query id --output tsv)' is not recognized as a name of a cmdlet, function, script file, or executable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again."
1 parent 33c86ba commit 86b4453

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
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
```

0 commit comments

Comments
 (0)