Skip to content

Commit 95a82cc

Browse files
committed
fix(docker): don't separate platforms
1 parent c40b0bb commit 95a82cc

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/release.yml

+2-7
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,7 @@ on:
99

1010
jobs:
1111
docker:
12-
strategy:
13-
matrix:
14-
arch: [linux/amd64, linux/arm64]
1512
runs-on: ubuntu-latest
16-
name: docker build arch ${{ matrix.arch }}
1713
steps:
1814
- name: Docker meta
1915
id: meta
@@ -50,10 +46,9 @@ jobs:
5046
uses: docker/build-push-action@v5
5147
with:
5248
file: ./docker/Dockerfile
53-
platforms: ${{ matrix.arch }}
49+
platforms: linux/amd64,linux/arm64
5450
push: true
5551
tags: ${{ steps.meta.outputs.tags }}
5652
labels: ${{ steps.meta.outputs.labels }}
57-
-
58-
name: Image digest
53+
- name: Image digest
5954
run: echo ${{ steps.docker_build.outputs.digest }}

0 commit comments

Comments
 (0)