From 6a967eb2c06ee2e4350da50ef4eb31d423521161 Mon Sep 17 00:00:00 2001 From: uranuspucksaxophone <84784521+uranuspucksaxophone@users.noreply.github.com> Date: Thu, 8 Sep 2022 22:07:07 +0200 Subject: [PATCH] Fix windows artifact uploading --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 401f2cab..d3485452 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -210,18 +210,18 @@ jobs: uses: actions/upload-artifact@v3 with: name: cemu-bin-windows-x64-release - path: ./bin/Cemu_release + path: ./bin/Cemu_release.exe - name: Upload artifact (debug) if: ${{ inputs.deploymode != 'release' }} uses: actions/upload-artifact@v3 with: name: cemu-bin-windows-x64-debug - path: ./bin/Cemu_debug + path: ./bin/Cemu_debug.exe - name: Upload artifact (experimental) if: ${{ inputs.experimentalversion != '' }} uses: actions/upload-artifact@v3 with: name: cemu-bin-windows-x64-experimental - path: ./bin/Cemu_experimental + path: ./bin/Cemu_experimental.exe