-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
appveyor.yml
47 lines (39 loc) · 1013 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
43
44
45
46
47
version: 0.3.0-build{build}
image: Visual Studio 2022
shallow_clone: true
clone_folder: c:\Avalonia.Flexbox
configuration:
- Debug
- Release
platform: Any CPU
matrix:
fast_finish: true
nuget:
account_feed: false
project_feed: true
disable_publish_on_pr: true
build_script:
- cmd: dotnet msbuild /t:Restore;Build;Pack Avalonia.Flexbox.sln
test: off
artifacts:
- path: 'artifacts\Debug\nupkg\*.nupkg'
name: DebugNupkg
- path: 'artifacts\Release\nupkg\*.nupkg'
name: ReleaseNupkg
deploy:
- provider: NuGet
api_key:
secure: xWkQ7tm0o3jWSCcsQ9QiBIPe5VDqJbCzf9aVi+zIgnbhXV2FGT34eOuJetk7QqLU
artifact: ReleaseNupkg
on:
branch: master
configuration: Release
appveyor_repo_tag: true
- provider: NuGet
server: https://www.myget.org/F/jp2masa/api/v2/package
artifact: DebugNupkg
api_key:
secure: puOcEbngEmaVMEnUL20u4mzATgvoyaTPRWGGwE98as1+8KGY3ypOKzt5OV63duwI
on:
branch: master
configuration: Debug