try ustar format
AWS-Zig Build / build-zig-0.11.0-amd64-host (push) Successful in 6m50s Details

This commit is contained in:
Emil Lerch 2023-09-05 16:16:27 -07:00
parent 281247897b
commit eb91d40edf
Signed by: lobo
GPG Key ID: A7B62D657EF764F8
1 changed files with 4 additions and 1 deletions

View File

@ -35,7 +35,10 @@ jobs:
# Zig package manager expects everything to be inside a directory in the archive,
# which it then strips out on download. So we need to shove everything inside a directory
# the way GitHub/Gitea does for repo archives
- run: tar -czf ${{ runner.temp }}/${{ github.sha }}-with-models.tar.gz --format posix --exclude 'zig-*' --transform 's,^,${{ github.sha }}/,' *
#
# Also, zig tar process doesn't handle gnu format for long names, nor does it seam to
# handle posix long name semantics cleanly either. Let's try ustar
- run: tar -czf ${{ runner.temp }}/${{ github.sha }}-with-models.tar.gz --format ustar --exclude 'zig-*' --transform 's,^,${{ github.sha }}/,' *
# - name: Sign
# id: sign
# uses: https://git.lerch.org/lobo/action-hsm-sign@v1