From cb20d0298ab7bfa073898512d2cf9a92ef967beb Mon Sep 17 00:00:00 2001 From: DanielSvoboda Date: Wed, 28 Jan 2026 17:03:20 -0300 Subject: [PATCH] Add artifact upload step in build workflow Add step to upload build artifacts for PS2Recomp. --- .github/workflows/build.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 79acc17..3c43787 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,3 +36,11 @@ jobs: continue-on-error: true # When tests start passing, this line should be removed. run: | .\build\ps2xTest\Release\ps2x_tests.exe + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: PS2Recomp - Windows + path: | + build/ps2xAnalyzer/Release/*.exe + build/ps2xRecomp/Release/*.exe + build/ps2xTest/Release/*.exe