Skip to content

Commit

Permalink
Merge pull request #12 from eeholmes/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
vsoch authored Mar 1, 2024
2 parents 02a97f2 + 64f83e0 commit 9b36ca6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,12 @@ jobs:
- name: download archive to runner
env:
tarball: ${{ github.event.release.tarball_url }}
zipball: ${{ github.event.release.zipball_url }}
# add the suffix to the name of the file so type is recognized when downloading from Zenodo
# .tar.gz for tarball and .zip for zipball
# Archiving the zipball will cause Zenodo to show a preview of the contents of the zipball while using tarball will not.
run: |
name=$(basename ${tarball})
name=$(basename ${zipball}).zip
curl -L $tarball > $name
echo "archive=${name}" >> $GITHUB_ENV
Expand Down

0 comments on commit 9b36ca6

Please sign in to comment.