Skip to content

Commit 3ad6a92

Browse files
committed
change the docker driver back to a conditional and moved the qemu higher in the build-images step
1 parent 0cb46c5 commit 3ad6a92

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/docker-publish.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,15 @@ jobs:
5353
SHORT_SHA: ${{ needs.set-short-sha.outputs.short_sha }}
5454
DOCKER_PLATFORM: linux/${{ matrix.arch }}
5555
steps:
56+
- name: Set up QEMU
57+
uses: docker/setup-qemu-action@v3
58+
with:
59+
platforms: all
5660
- name: Set up Docker Buildx
5761
uses: docker/setup-buildx-action@v3
5862
with:
59-
#driver: ${{ matrix.arch == 'amd64' && 'docker' || 'docker-container' }}
60-
driver: ${{ 'docker-container' }}
63+
driver: ${{ matrix.arch == 'amd64' && 'docker' || 'docker-container' }}
64+
#driver: ${{ 'docker-container' }}
6165
- name: Checkout code
6266
uses: actions/checkout@v4
6367
- name: Login to Quay.io
@@ -87,8 +91,6 @@ jobs:
8791
path: |
8892
.venv
8993
key: ci-venv-${{ env.PIPELINE_FAMILY }}-${{ hashFiles('requirements/test.txt') }}
90-
- name: Set up QEMU
91-
uses: docker/setup-qemu-action@v3
9294
- name: Test image
9395
run: |
9496
source .venv/bin/activate

0 commit comments

Comments
 (0)