File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -234,11 +234,16 @@ jobs:
234
234
needs : ragger_tests
235
235
runs-on : ubuntu-22.04
236
236
steps :
237
+ - name : Remove whitespaces
238
+ id : whitespace-removal
239
+ run : |
240
+ NO_SPACE_TEST_OPTIONS="$(echo "${{ inputs.test_options }}" | tr -d '[:space:]')"
241
+ echo "test_options=$NO_SPACE_TEST_OPTIONS" >> "$GITHUB_OUTPUT"
237
242
- uses : actions/upload-artifact/merge@v4
238
243
if : ${{ needs.ragger_tests.outputs.snapshot_artifact_uploaded == 'true' }}
239
244
with :
240
- name : tests_snapshots${{ inputs .test_options }}
241
- pattern : tests_snapshots${{ inputs .test_options }}-*
245
+ name : tests_snapshots${{ steps.whitespace-removal.outputs .test_options }}
246
+ pattern : tests_snapshots${{ steps.whitespace-removal.outputs .test_options }}-*
242
247
delete-merged : true
243
248
244
249
outputs :
You can’t perform that action at this time.
0 commit comments