From c67e6c92594777c680bfec607e2ad5065497e7ad Mon Sep 17 00:00:00 2001 From: David Bomba Date: Tue, 2 May 2023 12:39:16 +1000 Subject: [PATCH] Set two builds --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1cf240577..207a5e9b79 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,8 +65,9 @@ jobs: - name: Build project run: | + zip -r /home/runner/work/invoiceninja/invoiceninja.zip .* -x "../*" cd .. - tar --exclude='.htaccess' -zcvf /home/runner/work/invoiceninja/invoiceninja.tar -C invoiceninja . + tar --exclude='.htaccess' --exclude='invoiceninja.zip' -zcvf /home/runner/work/invoiceninja/invoiceninja.tar -C invoiceninja . - name: Release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') @@ -74,4 +75,5 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: files: | - /home/runner/work/invoiceninja/invoiceninja.tar \ No newline at end of file + /home/runner/work/invoiceninja/invoiceninja.tar + /home/runner/work/invoiceninja/invoiceninja.zip \ No newline at end of file