Skip to content

Commit

Permalink
Don't compress tar archives
Browse files Browse the repository at this point in the history
GitHub automatically compresses release artefacts, so don't add a
separate level of compression myself.
  • Loading branch information
me-and committed Jan 9, 2023
1 parent 156778e commit 2c2fe05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,14 @@ jobs:
shell: C:\cygwin\bin\bash.exe --noprofile --norc -e -o pipefail -o igncr {0}
env:
PATH: C:\cygwin\bin
run: tar -caf libinih-build-results.txz libinih-*-*.*/
run: tar -cvf build-results.tar libinih-*-*.*/
timeout-minutes: 10

- name: Store build results
if: always()
uses: actions/upload-artifact@v3
with:
name: build-results
path: libinih-build-results.txz
path: build-results.tar
if-no-files-found: error
timeout-minutes: 5

0 comments on commit 2c2fe05

Please sign in to comment.