From a886ad3accb51312a0c12c21d5733f92bed6d47c Mon Sep 17 00:00:00 2001 From: Margen67 Date: Sat, 26 Oct 2019 02:32:32 -0700 Subject: [PATCH] Fix GitHub Actions --- .github/workflows/main.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 571d8883d..1b170567f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,17 +12,16 @@ jobs: - uses: actions/checkout@master - name: Setup - run: xb setup + run: .\xb setup - name: Build - run: xb build --cpu_arch=${{matrix.cpu_arch}} --target=src\xenia-app --target=tests\xenia-cpu-ppc-tests --target=src\xenia-vfs-dump + run: .\xb build --cpu_arch=${{matrix.cpu_arch}} --target=src\xenia-app --target=tests\xenia-cpu-ppc-tests --target=src\xenia-vfs-dump - name: Prepare artifacts run: | robocopy build\bin\Windows\Release artifacts xenia.exe xenia-vfs-dump.exe robocopy . artifacts LICENSE - if errorlevel 8 exit /b 1 - exit /b 0 + $LastExitCode = 0 - uses: actions/upload-artifact@master with: