From ec02f17089d390b7c99de356bbbfeb60a356b93e Mon Sep 17 00:00:00 2001 From: SocksOnHead Date: Sun, 20 Jul 2025 18:44:30 +0200 Subject: [PATCH] fix: compression --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 64f9922..bbb31f3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -97,7 +97,7 @@ jobs: - name: Zip the build for github release if: ${{ github.event.inputs.create_release != 'false' }} - run: 7z a -tzip ./out/HomeScreen_Build_${{ steps.semver.outputs.next }}.zip ./out/* + run: Compress-Archive -Path './out/*' -DestinationPath './out/HomeScreen_Build_${{ steps.semver.outputs.next }}.zip' -CompressionLevel Optimal -Force - name: Upload Release Asset if: ${{ github.event.inputs.create_release != 'false' }}