From e138c446167906005bbb303d6c170ab0eb9853c4 Mon Sep 17 00:00:00 2001 From: theoleuthardt Date: Thu, 13 Mar 2025 12:24:18 +0100 Subject: [PATCH] fix: debugging windows runner output directory --- .github/workflows/release.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a8e4860..75bcd90 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -100,17 +100,23 @@ jobs: zip -r ../../DinoGame-${{ runner.os }}.zip . shell: bash + - name: List files before zipping + if: runner.os == 'Windows' + run: | + dir ${{ steps.get-output-dir.outputs.output_dir }} + shell: powershell + - name: Zip Build with Assets (Windows) if: runner.os == 'Windows' run: | cd ${{ steps.get-output-dir.outputs.output_dir }} - Compress-Archive -Path .\* -DestinationPath ..\DinoGame-${{ runner.os }}.zip + Compress-Archive -Path .\* -DestinationPath ..\DinoGame-Windows.zip shell: powershell - name: List files after zipping if: runner.os == 'Windows' run: | - dir ..\DinoGame-${{ runner.os }}.zip + dir .. shell: powershell