File tree Expand file tree Collapse file tree 5 files changed +2215
-50
lines changed Expand file tree Collapse file tree 5 files changed +2215
-50
lines changed Original file line number Diff line number Diff line change @@ -161,6 +161,16 @@ runs:
161161 path : ${{ steps.action-path.outputs.path }}/node_modules
162162 key : ${{ runner.os }}-filecoin-action-deps-${{ steps.lockfile-hash.outputs.hash }}
163163
164+ - name : Install filecoin-pin dependencies
165+ shell : bash
166+ working-directory : ${{ github.action_path }}
167+ run : npm install --prefix ../
168+
169+ - name : Build filecoin-pin package
170+ shell : bash
171+ working-directory : ${{ github.action_path }}
172+ run : npm run build --prefix ../
173+
164174 - name : Propagate Actions runtime token
165175 uses : actions/github-script@v7
166176 with :
Original file line number Diff line number Diff line change 3636 # This PROVIDER_ID set here will be used by the upload action below to override provider selection.
3737 - name : Select random known good provider
3838 run : |
39- known_good_provider_ids=(2 8 16 )
39+ known_good_provider_ids=(2)
4040 selected_provider_id=${known_good_provider_ids[$RANDOM % ${#known_good_provider_ids[@]}]}
4141 echo "PROVIDER_ID=$selected_provider_id" >> $GITHUB_ENV
4242 echo "Selected known good provider ID: $selected_provider_id"
Original file line number Diff line number Diff line change 4141 # This PROVIDER_ID set here will be used by the upload action below to override provider selection.
4242 - name : Select random known good provider
4343 run : |
44- known_good_provider_ids=(2 8 16 )
44+ known_good_provider_ids=(2)
4545 selected_provider_id=${known_good_provider_ids[$RANDOM % ${#known_good_provider_ids[@]}]}
4646 echo "PROVIDER_ID=$selected_provider_id" >> $GITHUB_ENV
4747 echo "Selected known good provider ID: $selected_provider_id"
You can’t perform that action at this time.
0 commit comments