From ffdf4771ae33230a224355f769a00719bfff1197 Mon Sep 17 00:00:00 2001 From: uranuspucksaxophone <84784521+uranuspucksaxophone@users.noreply.github.com> Date: Thu, 8 Sep 2022 20:49:07 +0200 Subject: [PATCH] Specify artifact upload directory --- .github/workflows/build.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 61dabb5e..2a08ab05 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -94,21 +94,21 @@ jobs: uses: actions/upload-artifact@v3 with: name: cemu-bin-linux-x64-release - path: ./Cemu_release + path: ./bin/Cemu_release - name: Upload artifact (debug) if: ${{ inputs.deploymode != 'release' }} uses: actions/upload-artifact@v3 with: name: cemu-bin-linux-x64-debug - path: ./Cemu_debug + path: ./bin/Cemu_debug - name: Upload artifact (experimental) if: ${{ inputs.experimentalversion != '' }} uses: actions/upload-artifact@v3 with: name: cemu-bin-linux-x64-experimental - path: ./Cemu_debug + path: ./bin/Cemu_debug build-windows: runs-on: windows-2022 @@ -212,18 +212,18 @@ jobs: uses: actions/upload-artifact@v3 with: name: cemu-bin-windows-x64-release - path: ./Cemu_release + path: ./bin/Cemu_release - name: Upload artifact (debug) if: ${{ inputs.deploymode != 'release' }} uses: actions/upload-artifact@v3 with: name: cemu-bin-windows-x64-debug - path: ./Cemu_debug + path: ./bin/Cemu_debug - name: Upload artifact (experimental) if: ${{ inputs.experimentalversion != '' }} uses: actions/upload-artifact@v3 with: name: cemu-bin-windows-x64-experimental - path: ./Cemu_debug + path: ./bin/Cemu_debug