-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
28 lines (27 loc) · 868 Bytes
/
.appveyor.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
image: Visual Studio 2019
install:
- cinst 7zip
- cinst wget
- wget -c https://github.com/15-466/nest-libs/releases/download/v0.2/nest-libs-windows-v0.2.zip
- unzip -a nest-libs-windows-v0.2.zip
- mv nest-libs ..
- mv windows_build.bat ../nest-libs/windows/jam
build_script:
- set GAME_DIR=%cd%
- echo %GAME_DIR%
- cd ../nest-libs/windows/jam
- cmd "/C call windows_build.bat"
- cd %GAME_DIR%
- 7z a windows-build.zip dist/*.*
skip_non_tags: true
artifacts:
- path: windows-build.zip
name: zip
deploy:
provider: GitHub
auth_token:
secure: 2anfWWNVVdf6mWjBTTvxeaaI/HRn6s0Z5/TqVGjkXMt2GCxhkGEcbQOGWQ8sN3GN
draft: false
prerelease: false
on:
APPVEYOR_REPO_TAG: true