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 1bef31b commit 82ec338Copy full SHA for 82ec338
.github/workflows/docker-publish.yml
@@ -24,8 +24,20 @@ env:
24
25
jobs:
26
build:
27
-
28
runs-on: ubuntu-latest
+ strategy:
29
+ fail-fast: true
30
+ matrix:
31
+ platform:
32
+ - linux/amd64
33
+ - linux/arm/v5
34
+ - linux/arm/v7
35
+ - linux/arm64/v8
36
+ - linux/386
37
+ - windows/amd64
38
+ - darwin/amd64
39
+ - darwin/arm64
40
+ - windows/arm64
41
permissions:
42
contents: read
43
packages: write
@@ -81,6 +93,7 @@ jobs:
81
93
labels: ${{ steps.meta.outputs.labels }}
82
94
cache-from: type=gha
83
95
cache-to: type=gha,mode=max
96
+ platform: ${{ matrix..platform }}
84
97
85
98
# Sign the resulting Docker image digest except on PRs.
86
99
# This will only write to the public Rekor transparency log when the Docker
0 commit comments