From f54efd47bb55cf0433d7a5f7825a023cc8a712bc Mon Sep 17 00:00:00 2001 From: Christopher Lowenthal Date: Mon, 7 Nov 2022 11:20:04 -0500 Subject: [PATCH] wip: fixing tarball file structure --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 98d789de4..bbf5cd0b3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -197,8 +197,9 @@ jobs: - run: ls -alt artifacts/ - run: | - tar -cvz -C artifacts -f featurebase-${{needs.meta.outputs.version}}.tar.gz artifacts/* - tar -tf featurebase-${{needs.meta.outputs.version}}.tar.gz + cd artifacts + tar -cvzf ../featurebase-${{needs.meta.outputs.version}}.tar.gz . + tar -tf ../featurebase-${{needs.meta.outputs.version}}.tar.gz - uses: actions/upload-artifact@v3 with: