From a5599b02f361d04a6609e75cdf6baf730d8cd3be Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 1 May 2023 23:59:53 +1000 Subject: [PATCH] Fixes for releases --- .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 16049da31f..c4de6e6501 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,7 +65,8 @@ jobs: - name: Build project run: | - tar --exclude='.htaccess' -zcvf ./invoiceninja.tar ./ + cd .. + tar --exclude='.htaccess' -zcvf /home/runner/work/invoiceninja/invoiceninja.tar invoiceninja/ - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') @@ -75,4 +76,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: my-artifact - path: ./invoiceninja.tar + path: /home/runner/work/invoiceninja/invoiceninja.tar