Skip to content

Commit 2b96542

Browse files
authored
pass token creds when setting container for prod deploy (#52728)
1 parent d120712 commit 2b96542

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/azure-prod-build-deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ jobs:
119119
120120
- name: 'Apply updated docker-compose.prod.yaml config to canary slot'
121121
run: |
122-
az webapp config container set --multicontainer-config-type COMPOSE --multicontainer-config-file docker-compose.prod.yaml --slot ${{ env.SLOT_NAME }} -n ${{ env.APP_SERVICE_NAME }} -g ${{ env.RESOURCE_GROUP_NAME }}
122+
az webapp config container set --multicontainer-config-type COMPOSE --multicontainer-config-file docker-compose.prod.yaml --slot ${{ env.SLOT_NAME }} -n ${{ env.APP_SERVICE_NAME }} -g ${{ env.RESOURCE_GROUP_NAME }} --container-registry-url ${{ secrets.PROD_REGISTRY_SERVER }} --container-registry-user ${{ env.ACR_TOKEN_NAME }} --container-registry-password ${{ env.ACR_TOKEN_VALUE }}
123123
124124
# Watch canary slot instances to see when all the instances are ready
125125
- name: Check that canary slot is ready

src/rest/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ Writers can also add an introduction paragraph _above_ the following Markdown co
7777
Slack: `#docs-engineering`
7878
Repo: `github/docs-engineering`
7979

80-
If you have a question about the REST pipeline, you can ask in the `#docs-engineering` Slack channel. If you notice a problem with the REST pipeline, you can open an issue in the `github/docs-engineering` repository.
80+
If you have a question about the REST pipeline, you can ask in the `#docs-engineering` Slack channel. If you notice a problem with the REST pipeline, you can open an issue in the `github/docs-engineering` repository. 🚀

0 commit comments

Comments
 (0)