From 8a49bc0890523fe5489b9ae621d9c2cf5f8d4a1b Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Tue, 18 Aug 2020 17:43:50 -0500 Subject: [PATCH] Added -m flag to msbuild Added platform to build artifact names --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c6873d4..3ae3e199 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,16 +32,16 @@ jobs: - name: Locate MSBuild uses: warrenbuckley/Setup-MSBuild@v1 - name: Restore - run: msbuild -t:Restore + run: msbuild -t:Restore -m - name: Build - run: msbuild -t:Build + run: msbuild -t:Build -m - name: Upload net461 uses: actions/upload-artifact@v2 with: - name: BSIPA-net461 + name: BSIPA-net461-${{ env.Platform }} path: BSIPA-Meta/bin/${{ env.Platform }}/${{ env.Configuration }}/net461/ - name: Upload net35 uses: actions/upload-artifact@v2 with: - name: BSIPA-net35 + name: BSIPA-net35-${{ env.Platform }} path: BSIPA-Meta/bin/${{ env.Platform }}/${{ env.Configuration }}/net35/ \ No newline at end of file