From 01729bb4c03c1d233b884f4ae3a1f3843f7cc81f Mon Sep 17 00:00:00 2001 From: Violin Yanev Date: Wed, 11 Jan 2023 18:56:33 +0100 Subject: [PATCH] Use zip for windows --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fced2c4c7..45083caa9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -67,7 +67,7 @@ jobs: cmake --build . --target package --config $BUILD_TYPE - find . -name '*tar.gz' -exec bash -c 'mv $0 ramses-windows-x64.tar.gz' {} \; + find . -name '*zip' -exec bash -c 'mv $0 ramses-windows-x64.zip' {} \; if: ${{ matrix.os == 'windows-2019' }} - name: Publish release @@ -75,7 +75,7 @@ jobs: with: fail_on_unmatched_files: true files: | - ${{runner.workspace}}/build/ramses-windows-x64.tar.gz + ${{runner.workspace}}/build/ramses-windows-x64.zip if: ${{ matrix.os == 'windows-2019' }} - name: Publish release