forked from ShiftMediaProject/FFVS-Project-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
36 lines (29 loc) · 836 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
30
31
32
33
34
35
36
version: '{build}'
branches:
only:
- master
skip_non_tags: true
shallow_clone: true
configuration: Release
platform:
- x86
- x64
build:
project: project_generate.sln
parallel: true
verbosity: minimal
after_build:
# Copy over readme to artifact folder
- cmd: copy /y %APPVEYOR_BUILD_FOLDER%\README.md %APPVEYOR_BUILD_FOLDER%\bin
artifacts:
- path: bin
name: $(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)_$(PLATFORM)
type: zip
deploy:
- provider: GitHub
tag: $(APPVEYOR_REPO_TAG_NAME)
description: Pre-built 32b and 64b executables for $(APPVEYOR_PROJECT_NAME) $(APPVEYOR_REPO_TAG_NAME)
auth_token:
secure: aiTcAD/YitqgwuiBdC3ImXiUlHfIIDD7ayjCs3Y3aAO5vEm1gA7flCZpUZ60a5am
artifact: $(APPVEYOR_PROJECT_NAME)_$(APPVEYOR_REPO_TAG_NAME)_$(PLATFORM)
force_update: true