From 1fed9ef988b9b308a29519fb7ebb3ee827bb154c Mon Sep 17 00:00:00 2001 From: Fabio de Agostini Schiozer <66429123+fabioschiozer@users.noreply.github.com> Date: Fri, 24 May 2024 14:43:25 -0300 Subject: [PATCH] Update releaseCreateManual.yml --- .github/workflows/releaseCreateManual.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/releaseCreateManual.yml b/.github/workflows/releaseCreateManual.yml index 28dacbc..487cacc 100644 --- a/.github/workflows/releaseCreateManual.yml +++ b/.github/workflows/releaseCreateManual.yml @@ -41,7 +41,7 @@ jobs: run: git config --global --add safe.directory '*' - name: Archiving Repository - run: git archive -o ${{ github.event.repository.name }}-${{ inputs.tag }}.zip HEAD + run: git archive --format=tar.gz -o ${{ github.event.repository.name }}-${{ inputs.tag }}.tar.gz HEAD - name: Create tag uses: actions/github-script@v6.4.1 @@ -60,4 +60,4 @@ jobs: GITHUB_TOKEN: ${{ secrets.SVC_CLI_BOT_GITHUB_TOKEN }} with: tag_name: ${{ inputs.tag }} - files: ${{ github.event.repository.name }}-${{ inputs.tag }}.zip + files: ${{ github.event.repository.name }}-${{ inputs.tag }}.tar.gz