Compare commits

..

No commits in common. "main" and "v0.0.1" have entirely different histories.
main ... v0.0.1

View File

@ -31,7 +31,7 @@ jobs:
steps:
- name: Install Prerequisites
run: |
doas apk add zig zstd sed libtool curl bison autoconf automake xz bzip2 bzip3 cmd:pkg-config
doas apk add zig zstd sed libtool curl bison autoconf automake xz bzip2 bzip3
- name: Checkout Repo
uses: actions/checkout@v3
@ -49,7 +49,7 @@ jobs:
run: cd "${OUTPUT}" && sha1sum "./"* | tee "hashes.sha1"
- name: Package Results
run: tar --zstd --strip-components=3 -cvf "${TARGET}.tar.zst" "${OUTPUT}/"*
run: tar --zstd --strip-components=3 -czvf "${TARGET}.tar.zst" "${OUTPUT}/"*
- name: Package Hash
run: sha1sum "${TARGET}.tar.zst"
@ -62,5 +62,5 @@ jobs:
tag_name: ${{ github.ref_type == 'tag' && github.ref_name || 'latest' }}
prerelease: ${{ github.ref_type != 'tag' }}
generate_release_notes: ${{ github.ref_type == 'tag' }}
files: "${{ matrix.target }}.tar.zst"
files: "${{ matrix.target }}.tar.gz"
fail_on_unmatched_files: true