We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec71e36 commit af57341Copy full SHA for af57341
.github/workflows/docker-image.yaml
@@ -19,7 +19,11 @@ env:
19
20
jobs:
21
build-and-push-image:
22
- runs-on: ubuntu-latest
+ strategy:
23
+ matrix:
24
+ os: [ubuntu-24.04, ubuntu-24.04-arm]
25
+ runs-on: ${{ matrix.os }}
26
+
27
permissions:
28
contents: read
29
packages: write
@@ -55,7 +59,6 @@ jobs:
55
59
context: .
56
60
push: ${{ github.event_name == 'push' && 'true' || 'false' }}
57
61
sbom: ${{ github.event_name == 'push' && 'true' || 'false' }}
58
- platforms: linux/amd64,linux/arm64
62
tags: ${{ steps.meta.outputs.tags }}
63
labels: ${{ steps.meta.outputs.labels }}
64
cache-from: type=gha
0 commit comments