From ac7847fea509e5302ee20a86b10011bc0e0d1029 Mon Sep 17 00:00:00 2001 From: Pranav C Date: Tue, 21 Jun 2022 17:50:39 +0530 Subject: [PATCH] chore(action): exclude compressed executables Signed-off-by: Pranav C --- .github/workflows/release-executables.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/release-executables.yml b/.github/workflows/release-executables.yml index 3857df89d6..efd9d09a0d 100644 --- a/.github/workflows/release-executables.yml +++ b/.github/workflows/release-executables.yml @@ -97,12 +97,6 @@ jobs: mv ./dist/Noco-macos-arm64 ./mac-dist/ mv ./dist/Noco-macos-x64 ./mac-dist/ - # Compress executables - GZIP=-9 tar -czvf ./dist/Noco-linux-x64.tar.gz ./dist/Noco-linux-x64 - GZIP=-9 tar -czvf ./dist/Noco-win-x64.tar.gz ./dist/Noco-win-x64.exe - GZIP=-9 tar -czvf ./dist/Noco-linux-arm64.tar.gz ./dist/Noco-linux-arm64 - GZIP=-9 tar -czvf ./dist/Noco-win-arm64.tar.gz ./dist/Noco-win-arm64.exe - - name: Upload executables(except mac executables) to release uses: svenstaro/upload-release-action@v2 with: @@ -149,10 +143,6 @@ jobs: with: name: ${{ github.event.inputs.tag || inputs.tag }} path: mac-dist - - name: Compress files - run: | - GZIP=-9 tar -czvf ./mac-dist/Noco-macos-x64.tar.gz ./mac-dist/Noco-macos-x64 - GZIP=-9 tar -czvf ./mac-dist/Noco-macos-arm64.tar.gz ./mac-dist/Noco-macos-arm64 - name: Upload mac executables to release uses: svenstaro/upload-release-action@v2