Skip to content

Commit a210b42

Browse files
committedJun 27, 2024
perf: add docker driver to setup-buildx-action
1 parent 985817b commit a210b42

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎.github/workflows/az_acr_release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,18 @@ jobs:
2020
with:
2121
submodules: 'true'
2222

23-
- name: Set up Docker Buildx
24-
uses: docker/setup-buildx-action@v3
25-
2623
- name: Log into registry
2724
uses: docker/login-action@v3
2825
with:
2926
registry: "${{ env.AZURE_CONTAINER_REGISTRY }}"
3027
username: "${{ env.ACR_LOGIN_USERNAME }}"
3128
password: "${{ env.ACR_LOGIN_PASSWORD }}"
3229

30+
- name: Set up Docker Buildx
31+
uses: docker/setup-buildx-action@v3
32+
with:
33+
driver: docker
34+
3335
- name: Build & Push ${{ github.event.repository.name }}:${{ env.IMAGE_TAG }}
3436
uses: docker/build-push-action@v5
3537
with:

0 commit comments

Comments
 (0)