forked from ericoporto/ImGi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
29 lines (26 loc) · 886 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
28
29
version: 1.0.{build}
image: Visual Studio 2019
build_script:
- call dev_scripts\install_dependencies.cmd
- call dev_scripts\build_game.cmd
- call dev_scripts\package_game.cmd
artifacts:
- path: dev_scripts\DIST\imgi_demo_linux.tar.gz
name: imgi_demo_linux.tar.gz
- path: dev_scripts\DIST\imgi_demo_windows.zip
name: imgi_demo_windows.zip
- path: dev_scripts\DIST\imgi.scm
name: imgi.scm
- path: package.json
name: package.json
deploy:
- provider: GitHub
auth_token:
secure: wZdCrU9dcec59hLKrRi7G6N4mWamWoDHcGTe4T2P5YJsV7CEYCyEcDwulO0V3bzK
artifact: imgi.scm, imgi_demo_linux.tar.gz, imgi_demo_windows.zip, package.json
draft: false
prerelease: false
force_update: true # it can't edit a release artifact if this is false
on:
branch: main # release from main branch only
appveyor_repo_tag: true # deploy on tag push only