From f441101c2535344c2f4c234a33632e355a5b43a7 Mon Sep 17 00:00:00 2001 From: Benjamin Brummer Date: Sat, 15 Mar 2025 06:33:36 +0000 Subject: [PATCH] remove parent folder in tar.gz --- .github/workflows/react_release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/react_release.yml b/.github/workflows/react_release.yml index 8611680633..32da52be85 100644 --- a/.github/workflows/react_release.yml +++ b/.github/workflows/react_release.yml @@ -65,8 +65,7 @@ jobs: run: | shopt -s dotglob tar --exclude='public/storage' --exclude='invoiceninja.zip' -zcvf /home/runner/work/invoiceninja/invoiceninja.tar * - cd ../ - tar --exclude='public/storage' --exclude='invoiceninja.zip' -zcvf invoiceninja.tar.gz invoiceninja/ + tar --exclude='public/storage' --exclude='invoiceninja.zip' -zcvf /home/runner/work/invoiceninja/invoiceninja.tar.gz * - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/')