Skip to content

Commit 66fb4db

Browse files
committed
Don't use matrix for different architectures
1 parent f41766c commit 66fb4db

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/build-and-push.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ jobs:
1414
strategy:
1515
matrix:
1616
folder: [proton]
17-
arch: [amd64, arm64]
1817
steps:
1918
- name: Checkout code
2019
uses: actions/checkout@v4
@@ -32,7 +31,7 @@ jobs:
3231
run: |
3332
IMAGE=ghcr.io/${{ github.repository_owner }}/base-${{ matrix.folder }}
3433
docker buildx build \
35-
--platform linux/${{ matrix.arch }} \
34+
--platform linux/amd64,linux/arm64 \
3635
-f ${{ matrix.folder }}/Containerfile \
3736
-t $IMAGE:latest \
3837
--push ${{ matrix.folder }}

0 commit comments

Comments
 (0)