-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
41 lines (34 loc) · 917 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
version: "#{build}"
image: Visual Studio 2017
configuration: Release
before_build:
- ps: dotnet --info
- ps: dotnet restore --verbosity detailed
build:
verbosity: minimal
test_script:
- ps: dotnet test -c $env:CONFIGURATION ./test/EntityLanguage.Tests/EntityLanguage.Tests.csproj
after_test:
- ps: dotnet pack -c $env:CONFIGURATION ./src/EntityLanguage/EntityLanguage.csproj
artifacts:
- path: 'src/EntityLanguage/bin/Release/*.nupkg'
name: NuGet Packages
deploy:
- provider: GitHub
description: ""
auth_token:
secure: gxD+NTodnQNMMljEkLwbmfQdsyBZFRIioVMM+RQSFD3+h1GEgsEGuINxcfNgVceY
artifact: /.*\.nupkg/
draft: true
prerelease: true
on:
branch: master
appveyor_repo_tag: true
- provider: NuGet
api_key:
secure: 80Ifo8pBjEsFrG2mn50qSl7+uFgquQSareLS3l21DfWT49nFtb/SZsHSkR/DRDsO
skip_symbols: true
artifact: /.*\.nupkg/
on:
branch: master
appveyor_repo_tag: true