Skip to content

Build Shroudtopia

Build Shroudtopia #1

Workflow file for this run

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