forked from opentracing-contrib/csharp-grpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
38 lines (30 loc) · 920 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
# AppVeyor Build number is incremental and not related to actual version number of the product
version: '{build}'
image: Visual Studio 2017
init:
- cmd: git config --global core.autocrlf true
environment:
global:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
DOTNET_CLI_TELEMETRY_OPTOUT: 1
build_script:
- ps: .\build.ps1
test: off
artifacts:
- path: artifacts\nuget\*.nupkg
name: NuGet
# Deploy every successful build (except PRs) to development feed
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true
deploy:
# Create a GitHub release for every tag
- provider: GitHub
release: $(appveyor_repo_tag_name)
description: "See milestone for changes: https://github.com/opentracing-contrib/csharp-grpc/milestones"
draft: true
auth_token:
secure: VD2KNkqKnAIEm3QWxqCLC3KaVrQjfxsaV9NiuLCvrTEAk4p5ZmI462RA4qoB21KS
on:
appveyor_repo_tag: true