From 9d77a69563af42fb7d006997b58dc219be7fc2d8 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Mon, 1 May 2023 23:11:50 +1000 Subject: [PATCH] Fixes for releases --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index feb745cd5e26..a8d14794e4fa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,7 +66,7 @@ jobs: - name: Build project run: | cd .. - tar --exclude='.htaccess' -zcvf invoiceninja.tar invoiceninja/ + tar --exclude='.htaccess' -zcvf ./invoiceninja.tar invoiceninja/ - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') @@ -76,4 +76,4 @@ jobs: uses: actions/upload-artifact@v3 with: name: my-artifact - path: invoiceninja.tar + path: ./invoiceninja.tar