-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
60 lines (28 loc) · 919 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
version: 1.0.{build}
pull_requests:
do_not_increment_build_number: true
skip_non_tags: true
configuration: Release
before_build:
- cmd: dotnet restore
build:
project: ImperialTablet.sln
publish_nuget: true
include_nuget_references: true
parallel: true
verbosity: minimal
after_build:
- cmd: >-
copy README.md build\ImperialTablet\README.md
copy fxmanifest.lua build\ImperialTablet\fxmanifest.lua
cd build\ImperialTablet\ && 7z a "..\..\ImperialTablet\ImperialTablet.zip" -r * && cd ..\..\ImperialTablet\
appveyor PushArtifact ImperialTablet.zip
deploy:
- provider: GitHub
tag: $(appveyor_build_version)
release: '[Release] ImperialTablet-v$(appveyor_build_version)'
description: ImperialTablet version v$(appveyor_build_version)
auth_token:
secure: Hw8d95jOk9+v5QZDK3UbueRKyvYMyht+W5r38JVngeqMB4sC+7V8cRwmGwu7rJbp
on:
APPVEYOR_REPO_TAG: true