From ebdf1061cfd6dbffb85f28ddd31e2d36b7160f5a Mon Sep 17 00:00:00 2001 From: alice pellerin Date: Fri, 1 May 2026 23:57:04 -0500 Subject: [PATCH] fix tar.gz packaging --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ae0155..fa5b677 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,7 +55,7 @@ jobs: HEXAPODA_MANPAGE: manpage - name: package-tar-gz if: ${{ matrix.info.package-extension == 'tar.gz' }} - run: tar --create --gzip --file "hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.tar.gz" -C "target/release/" "hexapoda${{ matrix.info.executable-extension }}" -C "." "completions" "manpage" + run: tar --create --gzip --file "hexapoda-${{ matrix.info.os }}-${{ github.ref_name }}.tar.gz" "completions" "manpage" -C "target/release/" "hexapoda${{ matrix.info.executable-extension }}" - name: package-zip if: ${{ matrix.info.package-extension == 'zip' }} run: |