From 28bdfe8f451c0df96f2dc3efd57ce302069817c4 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 3 May 2023 00:00:58 +1000 Subject: [PATCH] Fixes for tar github actions --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43d371e97f..b1be041248 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,7 +67,7 @@ jobs: run: | zip -r /home/runner/work/invoiceninja/invoiceninja.zip .* -x "../*" shopt -s dotglob - tar --exclude='.htaccess' --exclude='invoiceninja.zip' -zcvf /home/runner/work/invoiceninja/invoiceninja.tar * + tar --exclude='public/storage' --exclude='.htaccess' --exclude='invoiceninja.zip' -zcvf /home/runner/work/invoiceninja/invoiceninja.tar * - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/')