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 @@ -265,13 +265,13 @@ jobs:
265
265
echo "platform=$platform" >> $GITHUB_OUTPUT
266
266
- name : Download binaries from previous release
267
267
run : gh release download "${{ needs.prepare.outputs.previous_release }}" --pattern "ruby-${{ matrix.name }}-${{ steps.platform.outputs.platform }}.tar.gz"
268
- if : matrix.name != 'noop'
268
+ if : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.skip_slow == 'true' }}
269
269
- name : Re-upload Binaries
270
270
run : gh release upload "${{ needs.release.outputs.tag }}" "ruby-${{ matrix.name }}-${{ steps.platform.outputs.platform }}.tar.gz"
271
- if : matrix.name != 'noop'
271
+ if : ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.skip_slow == 'true' }}
272
272
- name : (Empty step for when reuse is not applied)
273
273
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
274
- if : matrix.name == 'noop'
274
+ if : ${{ !(github.event_name == 'workflow_dispatch' && github.event.inputs.skip_slow == 'true') }}
275
275
276
276
publish :
277
277
name : Publish Release
You can’t perform that action at this time.
0 commit comments