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

Commit 809d82a

Browse files
committed
Only download binaries when we're going to need them
1 parent ae399e4 commit 809d82a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/build.yml

+1
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ jobs:
252252
echo "platform=$platform" >> $GITHUB_OUTPUT
253253
- name: Download binaries from previous release
254254
run: gh release download "${{ needs.prepare.outputs.previous_release }}" --pattern "ruby-${{ matrix.name }}-${{ steps.platform.outputs.platform }}.tar.gz"
255+
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.skip_slow == 'true' }}
255256
- name: Re-upload Binaries
256257
run: gh release upload "${{ needs.release.outputs.tag }}" "ruby-${{ matrix.name }}-${{ steps.platform.outputs.platform }}.tar.gz"
257258
if: ${{ github.event_name == 'workflow_dispatch' && github.event.inputs.skip_slow == 'true' }}

0 commit comments

Comments
 (0)