Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

Commit 28328d8

Browse files
committed
WIP debug
1 parent af2f258 commit 28328d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -265,13 +265,13 @@ jobs:
265265
echo "platform=$platform" >> $GITHUB_OUTPUT
266266
- name: Download binaries from previous release
267267
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' }}
269269
- name: Re-upload Binaries
270270
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' }}
272272
- name: (Empty step for when reuse is not applied)
273273
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') }}
275275

276276
publish:
277277
name: Publish Release

0 commit comments

Comments
 (0)