Build Shroudtopia #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Shroudtopia | |
on: | |
workflow_dispatch: | |
jobs: | |
windows: | |
name: run on windows | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ilammy/msvc-dev-cmd@v1.4.1 | |
- name: compile core dll | |
run: | | |
MSBuild "shroudtopia\shroudtopia.sln" /t:Build /p:Configuration=Release /p:OutDir="." /p:Platform=x64 | |
shell: cmd | |
- name: compile proxy 'winmm.dll' | |
run: | | |
MSBuild "winmm\winmm.sln" /t:Build /p:Configuration=Release /p:OutDir="." /p:Platform=x64 | |
shell: cmd | |
- name: compress binaries | |
run: | | |
Compress-Archive -Path *.exe -Destination Shroudtopia.zip | |
shell: cmd | |
- name: upload executable | |
uses: actions/upload-artifact@v2 | |
with: | |
name: windows | |
path: | | |
Shroudtopia.zip |