File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 43
43
44
44
- name : Get artifact name
45
45
id : getartifactname
46
- run : echo "artifact=$(printf '%s-digests' ${{ matrix.image }} | sed 's/\//-/g;s/\./-/g')" >> "$GITHUB_OUTPUT"
46
+ run : echo "artifact=$(printf '%s-%s- digests' ${{ matrix.image }} ${{ matrix.platform }} | sed 's/\//-/g;s/\./-/g')" >> "$GITHUB_OUTPUT"
47
47
48
48
# Define tagging policy
49
49
# - everything coming in another branch than default one is considered edge (unstable)
@@ -119,13 +119,17 @@ jobs:
119
119
strategy :
120
120
fail-fast : false
121
121
matrix :
122
+ platform :
123
+ - linux/amd64
124
+ - linux/arm64
125
+ - linux/arm/v7
122
126
image :
123
127
- eveseat/seat
124
128
- ghcr.io/eveseat/seat
125
129
steps :
126
130
- name : Get artifact name
127
131
id : getartifactname
128
- run : echo "artifact=$(printf '%s-digests' ${{ matrix.image }} | sed 's/\//-/g;s/\./-/g')" >> "$GITHUB_OUTPUT"
132
+ run : echo "artifact=$(printf '%s-%s- digests' ${{ matrix.image }} ${{ matrix.platform }} | sed 's/\//-/g;s/\./-/g')" >> "$GITHUB_OUTPUT"
129
133
130
134
- name : Download digests
131
135
uses : actions/download-artifact@v3
You can’t perform that action at this time.
0 commit comments