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:
262262 echo "platform=$platform" >> $GITHUB_OUTPUT
263263 - name : Download binaries from previous release
264264 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'
266266 - name : Re-upload Binaries
267267 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'
269269 - name : (Empty step for when reuse is not applied)
270270 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'
272272
273273 publish :
274274 name : Publish Release
You can’t perform that action at this time.
0 commit comments