forked from uComponents/nuPickers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
58 lines (50 loc) · 1.55 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
54
55
56
57
58
# version format
version: 1.5.4.{build}
# Do not build on tags
skip_tags: true
# UMBRACO_PACKAGE_PRERELEASE_SUFFIX if a rtm release build this should be blank, otherwise if empty will default to alpha
# example UMBRACO_PACKAGE_PRERELEASE_SUFFIX=beta
init:
- set UMBRACO_PACKAGE_PRERELEASE_SUFFIX=
build_script:
- cd package
- Build.bat
artifacts:
- path: package\artifacts\*.nupkg
- path: package\artifacts\*.zip
deploy:
# MyGet Deployment for builds
- provider: NuGet
server: https://www.myget.org/F/nupickers/
symbol_server: https://nuget.symbolsource.org/MyGet/nupickers
api_key:
secure: SASQGWG/4zNns7bwSSsJ5RPvKcKfJsBeEPuw69wsVPA3PO739QmzVtc5VwQwgvbr
artifact: /.*\.nupkg/
on:
branch: master
# MyGet Deployment for releases
- provider: NuGet
server: https://www.myget.org/F/nupickers/
symbol_server: https://nuget.symbolsource.org/MyGet/nupickers
api_key:
secure: SASQGWG/4zNns7bwSSsJ5RPvKcKfJsBeEPuw69wsVPA3PO739QmzVtc5VwQwgvbr
artifact: /.*\.nupkg/
on:
branch: release
# NuGet Deployment for releases
- provider: NuGet
server:
api_key:
secure: adk3pI9HCByZg2VRxplX9UR6qHf97bA3as6dusxLswCKI8BQQE8DO5a0frLrI+EO
artifact: /.*\.nupkg/
on:
branch: release
# GitHub Deployment for releases
- provider: GitHub
auth_token:
secure: c0LwOGqoFZIieyy8CHrUtYQOD0HL0rG5tV2DS+8FHv34BKs/LSGGtmWWep5O7GbV
artifact: /.*\.zip/ # upload all Zip packages to release assets
draft: false
prerelease: false
on:
branch: release