ci(package): run curl once per line
This commit is contained in:
parent
fd8e25608f
commit
0493bcec31
|
@ -50,7 +50,7 @@ jobs:
|
||||||
needs: build-pkg
|
needs: build-pkg
|
||||||
steps:
|
steps:
|
||||||
- name: "Download all release assets"
|
- name: "Download all release assets"
|
||||||
run: curl -s https://api.github.com/repos/engineer-man/piston/releases/latest | jq '.assets[].browser_download_url' -r | xargs curl -sLO
|
run: curl -s https://api.github.com/repos/engineer-man/piston/releases/latest | jq '.assets[].browser_download_url' -r | xargs -L 1 curl -sLO
|
||||||
- name: "Generate index file"
|
- name: "Generate index file"
|
||||||
run: |
|
run: |
|
||||||
echo "" > index
|
echo "" > index
|
||||||
|
|
Loading…
Reference in New Issue