File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,12 @@ jobs:
133133 variant : php-${{ needs.prepare.outputs.php83_version }}-bookworm
134134 platform : linux/arm/v6
135135 steps :
136+ -
137+ name : Prepare
138+ id : prepare
139+ run : |
140+ platform=${{ matrix.platform }}
141+ echo "sanitized_platform=${platform//\//-}" >> "${GITHUB_OUTPUT}"
136142 -
137143 uses : actions/checkout@v4
138144 with :
@@ -200,7 +206,7 @@ jobs:
200206 if : fromJson(needs.prepare.outputs.push)
201207 uses : actions/upload-artifact@v4
202208 with :
203- name : metadata-builder-${{ matrix.variant }}-${{ matrix.platform }}
209+ name : metadata-builder-${{ matrix.variant }}-${{ steps.prepare.outputs.sanitized_platform }}
204210 path : /tmp/metadata/builder/*
205211 if-no-files-found : error
206212 retention-days : 1
@@ -209,7 +215,7 @@ jobs:
209215 if : fromJson(needs.prepare.outputs.push)
210216 uses : actions/upload-artifact@v4
211217 with :
212- name : metadata-runner-${{ matrix.variant }}-${{ matrix.platform }}
218+ name : metadata-runner-${{ matrix.variant }}-${{ steps.prepare.outputs.sanitized_platform }}
213219 path : /tmp/metadata/runner/*
214220 if-no-files-found : error
215221 retention-days : 1
You can’t perform that action at this time.
0 commit comments