-
Notifications
You must be signed in to change notification settings - Fork 333
/
appveyor.yml
42 lines (42 loc) · 1.07 KB
/
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
version: '{build}'
os: Visual Studio 2022
branches:
only:
- main
environment:
BUILDING_ON_PLATFORM: win
BuildEnvironment: appveyor
skip_commits:
files:
- LICENSE
install:
- git submodule update --init
- dotnet build -c Release src/SkyApm.Transport.Protocol
build_script:
- ps: ./scripts/build.ps1
artifacts:
- path: artifacts/packages/*.nupkg
deploy:
- provider: NuGet
server: https://www.myget.org/F/skyapm-dotnet/api/v2/package
api_key:
secure: y93uJrdiEYaeVTFxeCduQSlCussOUF4UztOyhkxyZxFnIco73J/K2rdA2QShoEuh
skip_symbols: true
artifact: /artifacts\/packages\/.+\.nupkg/
on:
branch: main
- provider: NuGet
server: https://www.myget.org/F/skyapm-dotnet/api/v2/package
api_key:
secure: y93uJrdiEYaeVTFxeCduQSlCussOUF4UztOyhkxyZxFnIco73J/K2rdA2QShoEuh
skip_symbols: true
artifact: /artifacts\/packages\/.+\.nupkg/
on:
appveyor_repo_tag: true
- provider: NuGet
api_key:
secure: NIjkiW8row+eIim+zAHIfinfoWOp5oGB7eOjuctNvpDSmeepAQH0W4/xLZRKa54e
skip_symbols: true
artifact: /artifacts\/packages\/.+\.nupkg/
on:
appveyor_repo_tag: true