summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.dev>2020-04-29 11:28:08 -0400
committerGitHub <noreply@github.com>2020-04-29 11:28:08 -0400
commit4d55936f3514d2e7698ca50dd089b7e7eba4e48f (patch)
treea7a8847e7054d8bb4dc18c218ea6efa5a5452eb8 /.github
parent556191f510c5c3b9e40fcac4e6cb9b02503b9654 (diff)
ci: download all artifacts at once
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/workflow.yml23
1 files changed, 2 insertions, 21 deletions
diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml
index 1c0b4f773..81255646a 100644
--- a/.github/workflows/workflow.yml
+++ b/.github/workflows/workflow.yml
@@ -269,27 +269,8 @@ jobs:
steps:
- uses: actions/checkout@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: Download build artifacts
+ uses: actions/download-artifact@v2
- name: Generate checksums
run: for file in starship-*; do openssl dgst -sha256 -r "$file" | awk '{print $1}' > "${file}.sha256"; done