this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[GitHub Actions] Replace gzip with xz for the source archive

- Switch compression format from gzip to xz
- Use xz maximum compression level (`-9e`) to minimize archive size

Integral a2ee4840 58c8d904

+2 -2
+2 -2
.github/workflows/actions.yaml
··· 73 73 - name: Compress source 74 74 run: | 75 75 mkdir -v archive 76 - tar --create --gzip --verbose \ 77 - --file archive/darling-source.tar.gz \ 76 + tar --create --use-compress-program="xz -9e" --verbose \ 77 + --file archive/darling-source.tar.xz \ 78 78 --exclude=.git --exclude=.gitmodules --exclude=.gitignore \ 79 79 --directory=source \ 80 80 darling