File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ jobs:
165
165
if : ${{ github.event_name == 'push' }}
166
166
uses : actions/upload-artifact@v4
167
167
with :
168
- name : digests
168
+ name : digests-${{ matrix.arch == 'x86_64' && 'amd64' || 'arm64' }}
169
169
path : /tmp/digests/*
170
170
if-no-files-found : error
171
171
retention-days : 1
@@ -174,10 +174,16 @@ jobs:
174
174
needs : [ docker ]
175
175
runs-on : ubuntu-latest
176
176
steps :
177
- - name : Download digests
177
+ - name : Download digests (amd)
178
178
uses : actions/download-artifact@v4
179
179
with :
180
- name : digests
180
+ name : digests-amd64
181
+ path : /tmp/digests
182
+
183
+ - name : Download digests (arm)
184
+ uses : actions/download-artifact@v4
185
+ with :
186
+ name : digests-arm64
181
187
path : /tmp/digests
182
188
183
189
- name : Set up Docker Buildx
You can’t perform that action at this time.
0 commit comments