mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-24 21:57:41 +00:00
revert(ci): download all artifacts at once
This reverts commit 4d55936f35
.
This commit is contained in:
parent
99374eabdb
commit
284ee4e1ed
23
.github/workflows/workflow.yml
vendored
23
.github/workflows/workflow.yml
vendored
@ -269,8 +269,27 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Download build artifacts
|
# These can be squashed when https://github.com/actions/download-artifact/issues/6 is closed
|
||||||
uses: actions/download-artifact@v2
|
- name: Download releases from github_build
|
||||||
|
uses: actions/download-artifact@v1
|
||||||
|
with:
|
||||||
|
name: starship-x86_64-unknown-linux-gnu.tar.gz
|
||||||
|
path: .
|
||||||
|
- name: Download releases from github_build
|
||||||
|
uses: actions/download-artifact@v1
|
||||||
|
with:
|
||||||
|
name: starship-x86_64-unknown-linux-musl.tar.gz
|
||||||
|
path: .
|
||||||
|
- name: Download releases from github_build
|
||||||
|
uses: actions/download-artifact@v1
|
||||||
|
with:
|
||||||
|
name: starship-x86_64-apple-darwin.tar.gz
|
||||||
|
path: .
|
||||||
|
- name: Download releases from github_build
|
||||||
|
uses: actions/download-artifact@v1
|
||||||
|
with:
|
||||||
|
name: starship-x86_64-pc-windows-msvc.zip
|
||||||
|
path: .
|
||||||
|
|
||||||
- name: Generate checksums
|
- name: Generate checksums
|
||||||
run: for file in starship-*; do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done
|
run: for file in starship-*; do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done
|
||||||
|
Loading…
Reference in New Issue
Block a user