From acd21e3458f49e011a36d0d7d7d3ea3d053dfbee Mon Sep 17 00:00:00 2001 From: EthanPisani Date: Wed, 19 Feb 2025 16:23:55 -0500 Subject: [PATCH] Fix action name and windows zip --- .gitea/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 4d596f87..8064c4d7 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -12,7 +12,7 @@ on: jobs: buildForAllSupportedPlatforms: - name: Build for ${{ matrix.targetPlatform }} + name: Build for ${{ matrix.targetPlatform }} (${{ matrix.unityVersion }}) runs-on: ubuntu-latest strategy: fail-fast: false @@ -57,10 +57,10 @@ jobs: -x "StellarXipher_BurstDebugInformation_DoNotShip/**" cd ../.. elif [ "${{ matrix.targetPlatform }}" == "StandaloneWindows64" ]; then - cd build/StandaloneWindows64/build/StandaloneWindows64 + cd build/StandaloneWindows64 zip -r /tmp/zipped_builds/build_StandaloneWindows64.zip . \ -x "StellarXipher_BurstDebugInformation_DoNotShip/**" - cd ../../.. + cd ../.. fi - name: Debug - List files in /tmp/zipped_builds