This repository was archived by the owner on Mar 4, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -262,13 +262,13 @@ jobs:
262
262
echo "platform=$platform" >> $GITHUB_OUTPUT
263
263
- name : Download binaries from previous release
264
264
run : gh release download "${{ needs.prepare.outputs.previous_release }}" --pattern "ruby-${{ matrix.name }}-${{ steps.platform.outputs.platform }}.tar.gz"
265
- if : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.skip_slow == 'true' }}
265
+ if : matrix.name != 'noop'
266
266
- name : Re-upload Binaries
267
267
run : gh release upload "${{ needs.release.outputs.tag }}" "ruby-${{ matrix.name }}-${{ steps.platform.outputs.platform }}.tar.gz"
268
- if : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.skip_slow == 'true' }}
268
+ if : matrix.name != 'noop'
269
269
- name : (Empty step for when reuse is not applied)
270
270
run : echo "Not reusing binaries. This step is a no-op." # We can't skip the whole job as publish depends on it, but we skip the uploading
271
- if : ${{ !(github.event_name == 'workflow_dispatch' && github.event.inputs.skip_slow == 'true') }}
271
+ if : matrix.name == 'noop'
272
272
273
273
publish :
274
274
name : Publish Release
You can’t perform that action at this time.
0 commit comments