-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
57 lines (47 loc) · 1.72 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
os: Visual Studio 2015
# Version format
version: 0.5.2.{build}
cache:
- src\packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
# 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=beta
build_script:
- build-appveyor.cmd
before_test:
- cmd: '"%programfiles(x86)%\Microsoft SDKs\Azure\Storage Emulator\AzureStorageEmulator.exe" start'
# Turn tests off just now
test: on
artifacts:
- path: artifacts\*.nupkg
- path: artifacts\*.zip
deploy:
# MyGet Deployment for builds & releases
- provider: NuGet
server: https://www.myget.org/F/umbracofilesystemproviders-azure/api/v2/package
symbol_server: https://nuget.symbolsource.org/MyGet/umbracofilesystemproviders-azure
api_key:
secure: fz0rUrt3B1HczUC1ZehwVsrFSWX9WZGDQoueDztLte9/+yQG+BBU7UrO+coE8lUf
artifact: /.*\.nupkg/
on:
branch: develop
# GitHub Deployment for releases
- provider: GitHub
auth_token:
secure: fjqBa6SK926I+Zf/gRUAAMlMKGuxYS6VVUKvFS6ClY9EbAKcAJw7Ia/a1tW5ELmD
artifact: /.*\.zip/ # upload all Zip packages to release assets
draft: false
prerelease: false
on:
branch: master
appveyor_repo_tag: true # deploy on tag push only
# NuGet Deployment for releases
- provider: NuGet
server:
api_key:
secure: kHataLiMb9nmJEdwBE4BTXvA4nOpoD3Fw14zVeDP6Vs0ZXpL7c8qeegMv/jMZECP
artifact: /.*\.nupkg/
on:
branch: master
appveyor_repo_tag: true