We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f41c3 commit c2718adCopy full SHA for c2718ad
.github/workflows/az_acr_push.yml
@@ -58,7 +58,7 @@ jobs:
58
uses: docker/build-push-action@v5
59
with:
60
push: true
61
- file: ${{ hashFiles('Dockerfile.arm64') != '' && 'Dockerfile.arm64' || 'Dockerfile' }}
+ file: ${{ (matrix.platform == 'arm64' && hashFiles('Dockerfile.arm64') != '') && 'Dockerfile.arm64' || 'Dockerfile' }}
62
tags: ${{ env.AZURE_CONTAINER_REGISTRY }}/${{ github.event.repository.name }}:${{ matrix.platform }}-${{ steps.branch_name.outputs.GH_REF_NAME }}
63
cache-from: type=gha
64
cache-to: type=gha,mode=max
0 commit comments