From 8a9d5e7e21a375e12c0c30cd9835eab802cda9a4 Mon Sep 17 00:00:00 2001 From: Kamil Zabielski <50334623+limakzi@users.noreply.github.com> Date: Wed, 28 Aug 2024 21:58:21 +0100 Subject: [PATCH] fix: Fix prefix for tarball (#78) --- .github/workflows/release-bump.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-bump.yaml b/.github/workflows/release-bump.yaml index 43121f2..e4062ef 100644 --- a/.github/workflows/release-bump.yaml +++ b/.github/workflows/release-bump.yaml @@ -54,7 +54,7 @@ jobs: - name: pkg -- build an archive run: | touch ${{ env.archive-file }} - tar -czf ${{ env.archive-file }} --exclude=${{ env.archive-file }} --transform 's,^,/${{ env.revision }}/,' . + tar -czf ${{ env.archive-file }} --exclude=${{ env.archive-file }} --transform 's,^\.,${{ env.revision }}/,' . - name: github -- upload artifacts uses: softprops/action-gh-release@v2