mirror of
https://github.com/jakcron/nstool
synced 2024-11-15 02:06:40 +00:00
Update build_master workflow.
This commit is contained in:
parent
ff2349b8ba
commit
f9266246b7
1 changed files with 3 additions and 2 deletions
5
.github/workflows/build_master.yml
vendored
5
.github/workflows/build_master.yml
vendored
|
@ -42,6 +42,7 @@ jobs:
|
|||
- dist: win_x86_64
|
||||
os: windows-latest
|
||||
platform: x64
|
||||
configuration: Release
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Add msbuild to PATH
|
||||
|
@ -49,9 +50,9 @@ jobs:
|
|||
- name: Clone submodules
|
||||
run: git submodule init && git submodule update
|
||||
- name: Compile ${{ matrix.prog }}
|
||||
run: msbuild .\build\visualstudio\${{ matrix.prog }}.sln /p:configuration=release /p:platform=${{ matrix.platform }}
|
||||
run: msbuild .\build\visualstudio\${{ matrix.prog }}.sln /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }}
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: ${{ matrix.prog }}-${{ matrix.dist }}
|
||||
path: .\build\visualstudio\x64\Release\${{ matrix.prog }}.exe
|
||||
path: .\build\visualstudio\${{ matrix.platform }}\${{ matrix.configuration }}\${{ matrix.prog }}.exe
|
||||
|
||||
|
|
Loading…
Reference in a new issue