Skip to content

Commit 6b8f220

Browse files
authored
build and push.yml
1 parent 977a063 commit 6b8f220

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/main.yml

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
with:
1919
creds: ${{ secrets.AZURE_CREDENTIALS }}
2020

21+
- name: 'Login to ACR'
22+
run: |
23+
echo "${{ secrets.AZURE_CREDENTIALS }}" > az-creds.json
24+
LOGIN_SERVER=${{ secrets.REGISTRY_LOGIN_SERVER }}
25+
az acr login --name $(echo $LOGIN_SERVER | cut -d'.' -f1)
26+
2127
- name: 'Build and push Docker image to ACR'
2228
run: |
2329
IMAGE_NAME=my-image-name:$(date +%s)

0 commit comments

Comments
 (0)