Skip to content

Commit

Permalink
Merge pull request #4 from phw/gzip-compress-artifacts
Browse files Browse the repository at this point in the history
CI: Compress artifacts with gzip
  • Loading branch information
lalinsky committed Jan 21, 2020
2 parents 1b999a5 + f053b31 commit 8ef82a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
for dir in $dirs
do
name=$(basename $dir)
tar cvf release/$name.tar.gz $dir
tar cvzf release/$name.tar.gz $dir
done
- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 8ef82a6

Please sign in to comment.