summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2020-05-15 11:09:07 -0400
committerMatan Kushner <hello@matchai.dev>2020-05-15 11:09:07 -0400
commit284ee4e1ed09d1c801ac388bded151e83154c5b4 (patch)
tree1eec1a774c3c80f0ecb2b686608129145af647bd
parent99374eabdb2b8fb9ba0ebdf52278ec56cab70123 (diff)
revert(ci): download all artifacts at once
-rw-r--r--.github/workflows/workflow.yml23
1 files changed, 21 insertions, 2 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index 238d9d5e0..dfc17edbe 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -269,8 +269,27 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Download build artifacts
- uses: actions/download-artifact@v2
+ # These can be squashed when https://github.com/actions/download-artifact/issues/6 is closed
+ - 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
run: for file in starship-*; do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done