Skip to content

Commit 1fff08e

Browse files
committed
adds appveyor
1 parent 54b990f commit 1fff08e

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

appveyor.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: 1.0.{build}
2+
image: Visual Studio 2019
3+
4+
build_script:
5+
- call dev_scripts\install_dependencies.cmd
6+
- call dev_scripts\build_game.cmd
7+
- call dev_scripts\package_game.cmd
8+
9+
artifacts:
10+
- path: dev_scripts\DIST\controlz_demo_linux.tar.gz
11+
name: controlz_demo_linux.tar.gz
12+
- path: dev_scripts\DIST\controlz_demo_windows.zip
13+
name: controlz_demo_windows.zip
14+
- path: dev_scripts\DIST\controlz.scm
15+
name: controlz.scm
16+
- path: package.json
17+
name: package.json
18+
19+
deploy:
20+
- provider: GitHub
21+
auth_token:
22+
secure: wZdCrU9dcec59hLKrRi7G6N4mWamWoDHcGTe4T2P5YJsV7CEYCyEcDwulO0V3bzK
23+
artifact: controlz.scm, controlz_demo_linux.tar.gz, controlz_demo_windows.zip, package.json
24+
draft: false
25+
prerelease: false
26+
force_update: true # it can't edit a release artifact if this is false
27+
on:
28+
branch: main # release from main branch only
29+
appveyor_repo_tag: true # deploy on tag push only

0 commit comments

Comments
 (0)