-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathappveyor.yml
More file actions
44 lines (34 loc) · 1.04 KB
/
appveyor.yml
File metadata and controls
44 lines (34 loc) · 1.04 KB
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
35
36
37
38
39
40
41
42
43
44
version: 1.0.{build}
image: Visual Studio 2017
configuration:
- Release
cache:
- build/lib -> appveyor.yml
before_build:
- cmd: >-
git submodule update --init --recursive
if not exist build\ mkdir build
cd build
cmake -G "Visual Studio 15 2017 Win64" ../
build:
project: build/PACKAGE.vcxproj
parallel: true
verbosity: minimal
after_build:
- cmd: >-
7z a SpellKnight_windows.zip %APPVEYOR_BUILD_FOLDER%/build/bin/%CONFIGURATION%/Coursework.exe %APPVEYOR_BUILD_FOLDER%/build/bin/%CONFIGURATION%/*.dll %APPVEYOR_BUILD_FOLDER%/build/bin/%CONFIGURATION%/res
artifacts:
- path: build/*.zip
name: Game_zip
- path: build/installer/*.exe
name: Spell_Knight_installer
deploy:
description: 'Windows releases of Spell Knight.'
provider: GitHub
on:
appveyor_repo_tag: true
CONFIGURATION: Release
auth_token:
secure: gaNPfzFDf02yceIPsb+6lUEf/YfexgCZr7tOGgLybABn/2LdEaMLymgfZLgdUivC
artifact: Game_zip, Spell_Knight_installer
prerelease: true