-
Notifications
You must be signed in to change notification settings - Fork 73
/
.appveyor.yml
38 lines (30 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
# 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/opentracing-csharp/releases"
draft: true
auth_token:
secure: 05KasH/6S6S8XqW70igCQOUMs8NmvjDbdojF7mZlvWHFEZ8B8c6/tmBEoRT636ui
on:
appveyor_repo_tag: true