forked from graphql-dotnet/server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
42 lines (33 loc) · 833 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
os: Visual Studio 2017
version: 0.0.0-{build}
build_script:
- ps: .\build.ps1 -Target "Default"
artifacts:
- path: artifacts\*.nupkg
name: Packages
test: off
skip_branch_with_pr: true
install:
- ps: Install-Product node LTS
- ps: choco install dotnetcore-sdk --no-progress --confirm --version 2.2.104
- node --version
- npm --version
- dotnet --version
on_failure:
- ps: Update-AppveyorBuild -Version "$($env:appveyor_build_version)-$(Get-Date -format HHmmss)-failed"
deploy:
- provider: NuGet
server: https://www.myget.org/F/graphql-dotnet/api/v2/package
api_key:
secure: +l1vfBMajn1WfmXkQ2LdILKxK4fQ5AHSnnU1kf11Bn1xRGUOTCdPhLwHx232piEn
skip_symbols: true
on:
branch:
- develop
- master
for:
-
branches:
only:
- master
skip_non_tags: true