We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24de21f commit 0166a8bCopy full SHA for 0166a8b
.github/workflows/build_image.yml
@@ -14,6 +14,9 @@ jobs:
14
build:
15
name: Build and publish container images
16
runs-on: ubuntu-latest
17
+ strategy:
18
+ matrix:
19
+ architecture: [amd64, arm64]
20
steps:
21
- name: Checkout code
22
uses: actions/checkout@v4
@@ -54,7 +57,7 @@ jobs:
54
57
uses: docker/build-push-action@v5
55
58
with:
56
59
push: true
- platforms: linux/amd64,linux/arm64
60
+ platforms: linux/${{ matrix.architecture }}
61
tags: ${{ steps.meta.outputs.tags }}
62
labels: ${{ steps.meta.outputs.labels }}
63
build-args: |
0 commit comments