-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
53 lines (45 loc) · 1.2 KB
/
.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
image: Visual Studio 2017
branches:
only:
- master
- develop
- /release\/.+/
- /hotfix\/.+/
skip_commits:
files:
- '**/*.md'
- '**/*.txt'
install:
- cmd: git submodule -q update --init
build_script:
- ps: .\build.ps1
artifacts:
- path: .\bin\net35
name: UnityFx.Async-net35
- path: .\bin\net46
name: UnityFx.Async-net46
- path: .\bin\netstandard2.0
name: UnityFx.Async-netstandard2.0
- path: .\bin\*.nupkg
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '$(GitVersion_MajorMinorPatch)'
package_version: '$(GitVersion_NuGetVersionV2)'
assembly_version: '$(GitVersion_AssemblySemVer)'
file_version: '$(GitVersion_MajorMinorPatch).$(GitVersion_CommitsSinceVersionSource)'
informational_version: '$(GitVersion_InformationalVersion)'
deploy:
- provider: GitHub
tag: v$(GitVersion_MajorMinorPatch)
auth_token:
secure: aTd8m7PLWUlE3iacD7bx9oWPW/CK0+BTE7/nhgB2EXk8iZ3FJ/TJX5kKLIYP76nN
force_update: false
on:
branch: master
- provider: NuGet
api_key:
secure: cl8dp9ovHYMe/jROq1m/sDPa4z4CbrOkwauIGXxBdSu+jPFXIME/yFPswAui3BoC
artifact: /.*\.nupkg/
on:
branch: /master|(release\/.+)|(hotfix\/.+)/