Compare commits

..

2 Commits
v0.0.2 ... main

Author SHA1 Message Date
Timmy Welch
1ac31860e8 Fix archive name
All checks were successful
Automated Releases / automated-releases (x86_64-linux-musl) (push) Successful in 12m8s
Automated Releases / automated-releases (aarch64-linux-musl) (push) Successful in 11m4s
2025-05-21 15:27:14 -07:00
Timmy Welch
52ded8567c Fix tar
Some checks failed
Automated Releases / automated-releases (aarch64-linux-musl) (push) Failing after 9m33s
Automated Releases / automated-releases (x86_64-linux-musl) (push) Failing after 10m15s
2025-05-18 16:28:20 -07:00

View File

@ -49,7 +49,7 @@ jobs:
run: cd "${OUTPUT}" && sha1sum "./"* | tee "hashes.sha1" run: cd "${OUTPUT}" && sha1sum "./"* | tee "hashes.sha1"
- name: Package Results - name: Package Results
run: tar --zstd --strip-components=3 -czvf "${TARGET}.tar.zst" "${OUTPUT}/"* run: tar --zstd --strip-components=3 -cvf "${TARGET}.tar.zst" "${OUTPUT}/"*
- name: Package Hash - name: Package Hash
run: sha1sum "${TARGET}.tar.zst" run: sha1sum "${TARGET}.tar.zst"
@ -62,5 +62,5 @@ jobs:
tag_name: ${{ github.ref_type == 'tag' && github.ref_name || 'latest' }} tag_name: ${{ github.ref_type == 'tag' && github.ref_name || 'latest' }}
prerelease: ${{ github.ref_type != 'tag' }} prerelease: ${{ github.ref_type != 'tag' }}
generate_release_notes: ${{ github.ref_type == 'tag' }} generate_release_notes: ${{ github.ref_type == 'tag' }}
files: "${{ matrix.target }}.tar.gz" files: "${{ matrix.target }}.tar.zst"
fail_on_unmatched_files: true fail_on_unmatched_files: true