From 7dab4c5057d0e9c979ad6730d6fbec2ed1632a81 Mon Sep 17 00:00:00 2001 From: jvyden Date: Thu, 28 Oct 2021 16:05:16 -0400 Subject: [PATCH] MSBuild is a flawless build system --- .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 aa2977b..dc512c4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,8 +14,8 @@ jobs: fail-fast: false matrix: os: - - { prettyName: Windows, configurationName: Windows, extraArgs: "-r win-x64" } - - { prettyName: Linux, configurationName: Linux, extraArgs: "" } + - { prettyName: Windows, configurationName: Windows, extraArgs: "-r win-x64", buildPath: "Release/net5.0-windows/win-x64/publish"} + - { prettyName: Linux, configurationName: Linux, extraArgs: "", buildPath: "Release/"} # - { prettyName: MacOS, configurationName: Release, platform: osx-x64 } steps: - name: Cancel previous runs of this workflow @@ -37,4 +37,4 @@ jobs: - uses: actions/upload-artifact@v2 with: name: UnionPatcher-${{ matrix.os.prettyName }} - path: ${{ github.workspace }}/UnionPatcher.Gui.${{ matrix.os.prettyName }}/bin/ \ No newline at end of file + path: ${{ github.workspace }}/UnionPatcher.Gui.${{ matrix.os.prettyName }}/bin/${{ matrix.os.buildPath }} \ No newline at end of file