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 937d709 commit 0744f88Copy full SHA for 0744f88
.github/workflows/build.yml
@@ -20,9 +20,11 @@ jobs:
20
strategy:
21
fail-fast: false
22
matrix:
23
- runner:
24
- - ubuntu-24.04
25
- - ubuntu-24.04-arm
+ include:
+ - platform: linux/amd64
+ runner: ubuntu-24.04-arm
26
+ - platform: linux/arm64
27
28
steps:
29
- name: Checkout code
30
uses: actions/checkout@v4
@@ -61,6 +63,7 @@ jobs:
61
63
name: Build/push the arch-specific image
62
64
uses: docker/build-push-action@v6
65
with:
66
+ platforms: ${{ matrix.platform }}
67
cache-from: type=registry,ref=${{ steps.cache-meta.outputs.tags }}
68
cache-to: type=registry,ref=${{ steps.cache-meta.outputs.tags }},mode=max
69
labels: ${{ steps.build-meta.outputs.labels }}
0 commit comments