Skip to content

Commit ceb4521

Browse files
committed
fix(ci): make proof params tmp dir if needed
1 parent d7e3941 commit ceb4521

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/proof-params-download/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ runs:
2929
# paramfetch is using `ipget` which currently always times out on CI,
3030
# hence get this file via HTTP instead.
3131
#cargo run --release --bin paramfetch -- -a -j srs-inner-product.json
32-
run: 'curl https://proofs.filecoin.io/v28-fil-inner-product-v1.srs --output /var/tmp/filecoin-proof-parameters/v28-fil-inner-product-v1.srs'
32+
run: 'mkdir -p /var/tmp/filecoin-proof-parameters && curl -fSL https://proofs.filecoin.io/v28-fil-inner-product-v1.srs -o /var/tmp/filecoin-proof-parameters/v28-fil-inner-product-v1.srs'
3333
- name: List parameter files
3434
shell: bash
3535
run: ls -al /var/tmp/filecoin-proof-parameters/

0 commit comments

Comments
 (0)