From aef9e00e3847c34f45921d9ae734a24846b5dc44 Mon Sep 17 00:00:00 2001 From: Sakimotor Date: Mon, 3 Mar 2025 11:35:41 +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 c398e6d..d0de59b 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -72,16 +72,16 @@ jobs: if: runner.os == 'Linux' run: | mkdir -p artifacts - cp build/XenonRecompiler/XenonRecompiler artifacts/ - cp build/XenonAnalyse/XenonAnalyse artifacts/ + cp build/XenonRecompiler artifacts/ + cp build/XenonAnalyse artifacts/ shell: bash - name: Package Artifacts (Windows) if: runner.os == 'Windows' run: | New-Item -ItemType Directory -Path artifacts - Copy-Item -Path build\XenonRecompiler\XenonRecompiler.exe -Destination artifacts\ - Copy-Item -Path build\XenonAnalyse\XenonAnalyse.exe -Destination artifacts\ + Copy-Item -Path build\XenonRecompiler.exe -Destination artifacts\ + Copy-Item -Path build\XenonAnalyse.exe -Destination artifacts\ shell: powershell - name: Upload Artifacts