Skip to content

Commit

Permalink
chore: fix backend test deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Jone-Torgersen committed Feb 12, 2025
1 parent b3e537a commit e4a8557
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/build-and-deploy-backend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,14 @@ jobs:
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}

- name: Get ACR Name
run: |
acrName=$(az acr list --resource-group ${{ secrets.AZURE_RG_TEST }} --query "[0].name" -o tsv)
echo "ACR_NAME=$acrName" >> $GITHUB_ENV
- name: Enable ACR Admin Account
run: |
az acr update -n bouvetSurveyContainerRegistry --admin-enabled true
az acr update -n ${{ env.ACR_NAME }} --admin-enabled true
- name: Get ACR Credentials
id: getacrcreds
Expand Down

0 comments on commit e4a8557

Please sign in to comment.