Skip to content

Commit 54322cd

Browse files
committed
Reverted matrix-style docker builds
Was causing arm image to be written over amd64 image
1 parent d52cac3 commit 54322cd

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,14 @@ jobs:
2828
contents: read
2929
packages: write
3030

31-
strategy:
32-
matrix:
33-
platform: [linux/amd64, linux/arm64]
34-
3531
steps:
3632
- name: Checkout repository
3733
uses: actions/checkout@v2
3834

3935
- name: Set up QEMU
40-
if: matrix.platform != 'linux/amd64'
4136
uses: docker/setup-qemu-action@v1
4237

4338
- name: Set up Docker Buildx
44-
if: matrix.platform != 'linux/amd64'
4539
uses: docker/setup-buildx-action@v1
4640

4741
# https://github.com/docker/login-action
@@ -66,7 +60,7 @@ jobs:
6660
with:
6761
context: .
6862
file: ./docker/Dockerfile
69-
platforms: ${{ matrix.platform }}
63+
platforms: linux/amd64,linux/arm64
7064
push: ${{ github.event_name != 'pull_request' }}
7165
tags: ${{ steps.meta.outputs.tags }}
7266
labels: ${{ steps.meta.outputs.labels }}

0 commit comments

Comments
 (0)