-
Notifications
You must be signed in to change notification settings - Fork 4
34 lines (32 loc) · 872 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Build Shroudtopia
on:
workflow_dispatch:
jobs:
windows:
name: win_x64
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: ilammy/[email protected]
- 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: powershell
- name: check
run: |
dir
shell: cmd
- name: upload executable
uses: actions/upload-artifact@v2
with:
name: windows
path: |
Shroudtopia.zip