Skip to content

Commit

Permalink
Merge pull request #844 from google/verify
Browse files Browse the repository at this point in the history
ci: Download all tarballs, not archives.
  • Loading branch information
jaqx0r authored Apr 23, 2024
2 parents 86f772b + 91bf868 commit c89a779
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,10 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -exuo pipefail
gh release download "${GITHUB_REF_NAME}" --repo "${GITHUB_REPOSITORY}" --archive tar.gz
gh release download "${GITHUB_REF_NAME}" --repo "${GITHUB_REPOSITORY}" --archive zip
gh release download "${GITHUB_REF_NAME}" --repo "${GITHUB_REPOSITORY}" --pattern '*.tar.gz'
gh release download "${GITHUB_REF_NAME}" --repo "${GITHUB_REPOSITORY}" --pattern '*.zip'
gh release download "${GITHUB_REF_NAME}" --repo "${GITHUB_REPOSITORY}" --pattern "${PROVENANCE}"
ls -l
- name: verify assets
run: |
set -euo pipefail
Expand Down

0 comments on commit c89a779

Please sign in to comment.