forked from quartznet/quartznet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
59 lines (47 loc) · 1.01 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
59
configuration: Release
image: Visual Studio 2019
version: '{build}'
pull_requests:
do_not_increment_build_number: true
skip_branch_with_pr: true
branches:
except:
- 2.x
skip_commits:
files:
- docs/**/*
- package.json
- docs.yml
services:
- mysql
- postgresql
init:
- net start MSSQL$SQL2019
nuget:
project_feed: true
disable_publish_on_pr: true
build_script:
- cmd: build.cmd Pack
test_script:
- dotnet test src\Quartz.Tests.Unit\Quartz.Tests.Unit.csproj -c Release
artifacts:
- path: artifacts/*.*nupkg
name: NuGet
- path: artifacts/*.zip
name: Zip
deploy:
- provider: NuGet
server: https://www.myget.org/F/quartznet/api/v2/package
api_key:
secure: vXa9bqFD68eDW9epKh/lUK/h1OdIL92RiKAbc+JfVarllY962DWqMNSKOdvCopy/
skip_symbols: true
on:
branch: master
- provider: NuGet
name: production
symbol_server: https://www.nuget.org
api_key:
secure: ZNvfUugU3rYb9t+UWbqt/hspUNLQfjWCvxTFQDpxkEEjLuLNk6amLDfGZZuiZxn4
on:
branch: master
appveyor_repo_tag: true