diff --git a/.github/workflows/build-gui.yml b/.github/workflows/build-gui.yml index dcb7e1ef3..130e8b82d 100644 --- a/.github/workflows/build-gui.yml +++ b/.github/workflows/build-gui.yml @@ -83,19 +83,28 @@ jobs: npm run skipbundler - if: matrix.os == 'windows-latest' - name: Upload a Build Artifact - uses: actions/upload-artifact@v3.1.0 + name: Upload a Build Artifact (Windows) + uses: actions/upload-artifact@v3 with: # Artifact name - name: SlimeVR-GUI + name: SlimeVR-GUI-Windows # A file, directory or wildcard pattern that describes what to upload path: target/release/slimevr.exe - - if: matrix.os != 'windows-latest' - name: Upload a Build Artifact - uses: actions/upload-artifact@v3.1.0 + - if: matrix.os == 'ubuntu-20.04' + name: Upload a Build Artifact (Linux) + uses: actions/upload-artifact@v3 with: # Artifact name name: SlimeVR-GUI-Linux # A file, directory or wildcard pattern that describes what to upload path: target/release/slimevr + + - if: matrix.os == 'macos-latest' + name: Upload a Build Artifact (macOS) + uses: actions/upload-artifact@v3 + with: + # Artifact name + name: SlimeVR-GUI-macOS + # A file, directory or wildcard pattern that describes what to upload + path: target/release/slimevr