From aeae099f7b1beb36d19af6f869e64e6a5a0773a8 Mon Sep 17 00:00:00 2001 From: Sakimotor Date: Mon, 3 Mar 2025 12:16:09 +0100 Subject: [PATCH] Update cmake-multi-platform.yml --- .github/workflows/cmake-multi-platform.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index d2b8f9b..50c0f50 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -88,16 +88,16 @@ jobs: if: runner.os == 'Linux' run: | mkdir -p artifacts - cp build/XenonRecomp artifacts/ - cp build/XenonAnalyse artifacts/ + cp XenonRecomp/XenonRecomp artifacts/ + cp XenonAnalyse/XenonAnalyse artifacts/ shell: bash - name: Package Artifacts (Windows) if: runner.os == 'Windows' run: | New-Item -ItemType Directory -Path artifacts - Copy-Item -Path build\XenonRecomp.exe -Destination artifacts\ - Copy-Item -Path build\XenonAnalyse.exe -Destination artifacts\ + Copy-Item -Path XenonRecomp\XenonRecomp.exe -Destination artifacts\ + Copy-Item -Path XenonAnalyse\XenonAnalyse.exe -Destination artifacts\ shell: powershell - name: Upload Artifacts