-
Notifications
You must be signed in to change notification settings - Fork 26
/
.appveyor.yml
32 lines (32 loc) · 1.13 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
version: 1.{build}
image: Visual Studio 2022
configuration: Release
before_build:
- cmd: nuget restore -DisableParallelProcessing src\SIPSorceryMedia.FFmpeg.csproj
build:
project: src\SIPSorceryMedia.FFmpeg.csproj
publish_nuget: false
verbosity: quiet
after_build:
- dotnet pack src\SIPSorceryMedia.FFmpeg.csproj -p:NuspecFile=SIPSorceryMedia.FFmpeg.nuspec -c Release --no-build
artifacts:
- path: '**\*.nupkg'
# - path: '**\*.snupkg'
deploy:
- provider: NuGet
server: # remove to push to NuGet.org
api_key:
secure: GWtnKGaBRjWgQ8jTe+9zzlr83Gr15mS/poFyqLWWEeWAIndh0uyaBpAXxozsCcC5
skip_symbols: false
symbol_server: # remove to push symbols to SymbolSource.org
artifact: /.*(\.|\.s)nupkg/
on:
APPVEYOR_REPO_TAG: true # deploy on tag push only
- provider: NuGet
server: https://nuget.pkg.github.com/sipsorcery/index.json
artifact: /.*(\.|\.s)nupkg/
username: sipsorcery
api_key:
secure: E58r+OknoQn8+bsPRT6l3U2K4kfOpDiGCo1C75LkVg+R/RBHpY//J8UCXEfVvyRB
on:
APPVEYOR_REPO_TAG: true # deploy on tag push only