Browse Source

Added -m flag to msbuild

Added platform to build artifact names
pull/53/head
Anairkoen Schno 3 years ago
parent
commit
8a49bc0890
Signed by: DaNike GPG Key ID: BEFB74D5F3FC4387
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      .github/workflows/build.yml

+ 4
- 4
.github/workflows/build.yml View File

@ -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/

Loading…
Cancel
Save