From 44c5d98ca8d4deae8e25d6fd4da767b6c6d9c33a Mon Sep 17 00:00:00 2001 From: reggie Date: Sun, 6 Oct 2024 14:02:58 -0500 Subject: [PATCH] /shrug --- .github/workflows/release.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 066ecef2..5acc28de 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -106,14 +106,17 @@ jobs: - name: Packing Windows builds if: matrix.platform.os == 'windows-latest' run: | + BUILD_VERSION="${{ steps.version_info.outputs.build_version }}" + ZIP_OS_NAME="${{ matrix.platform.zip_os_name }}" + pushd publish_ava cp Ryujinx.exe Ryujinx.Ava.exe - 7z a ../release_output/ryujinx-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.zip * - 7z a ../release_output/test-ava-ryujinx-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.zip * + 7z a ../release_output/ryujinx-$BUILD_VERSION-$ZIP_OS_NAME.zip * + 7z a ../release_output/test-ava-ryujinx-$BUILD_VERSION-$ZIP_OS_NAME.zip * popd pushd publish_sdl2_headless - 7z a ../release_output/sdl2-ryujinx-headless-${{ steps.version_info.outputs.build_version }}-${{ matrix.platform.zip_os_name }}.zip * + 7z a ../release_output/sdl2-ryujinx-headless-$BUILD_VERSION-$ZIP_OS_NAME.zip * popd shell: bash