-
Notifications
You must be signed in to change notification settings - Fork 7
/
appveyor.yml
48 lines (37 loc) · 985 Bytes
/
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
version: '{build}'
image: Visual Studio 2017
configuration: Release
branches:
only:
- master
nuget:
disable_publish_on_pr: true
pull_requests:
do_not_increment_build_number: true
before_build:
- dotnet restore
build:
project: AuthenticatedEncryption.sln
test_script:
- dotnet test "AuthenticatedEncryption.Tests/AuthenticatedEncryption.Tests.csproj" --configuration %configuration%
after_test:
- dotnet pack .\AuthenticatedEncryption -c Release
artifacts:
- path: '**\*.nupkg'
deploy:
- provider: NuGet
name: myget
server: https://trustpilot.myget.org/F/libraries/api/v2/package
skip_symbols: true
api_key:
secure: Yc1XzJ8dryVs6qXbRM5hRLbQjCHDkp8sY5rwuYsRClQ29vVFUlVfT0XpGWm5o/6m
on:
branch: master
appveyor_repo_tag: true
- provider: NuGet
name: nuget.org
api_key:
secure: s9avEz261DL/e11E3k2CvM+Rnr3t10FWzYvH+5HddkytYKT0FediEdye1hujM/Gb
on:
branch: master
appveyor_repo_tag: true