forked from redmanmale/imageformats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
49 lines (43 loc) · 1.12 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
init:
- ps: >-
if ($env:APPVEYOR_REPO_TAG -eq "true")
{
Update-AppveyorBuild -Version "$($env:APPVEYOR_REPO_TAG_NAME.TrimStart("v."))"
}
else
{
Update-AppveyorBuild -Version "1.0.0.$env:APPVEYOR_BUILD_VERSION"
}
os: Visual Studio 2017
platform: Any CPU
configuration: Release
build:
project: ImageFormats.sln
publish_nuget: true
publish_nuget_symbols: true
assembly_info:
patch: true
file: AssemblyInfo.*
assembly_version: '{version}'
assembly_file_version: '{version}'
assembly_informational_version: '{version}'
shallow_clone: true
deploy:
- provider: GitHub
name: github_release
auth_token:
secure: B8gZhfAArOTHNESIhicNlL/BOgz3dBlqV/TGFReQHe5EVIjhtFWbjc3mvRD83DaI
artifact: /^ImageFormats.*\.nupkg$/
draft: false
prerelease: false
on:
appveyor_repo_tag: true
- provider: NuGet
name: nuget_release
api_key:
secure: dneZawAI0W9FhzS0HchqG+lYctcJbuJ+Yv/77lnVuTWX4H/NeHPW06Daw3fxHekY
artifact: /^ImageFormats.*\.nupkg$/
draft: false
prerelease: false
on:
appveyor_repo_tag: true