-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
42 lines (41 loc) · 1.17 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
version: 1.2.{build}
image: Visual Studio 2022
skip_tags: true
skip_branch_with_pr: true
skip_commits:
files:
- .github/*
- .paket/*
- docs/**/*
- '**/*.html'
- '**/*.md'
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '$(appveyor_build_version)'
package_version: '$(appveyor_build_version)'
assembly_version: '$(appveyor_build_version)'
file_version: '$(appveyor_build_version)'
informational_version: '$(appveyor_build_version)'
build_script:
- cmd: >-
dotnet pack src\BingImageDownload.sln --configuration Release
test: off
artifacts:
- path: src\BingImageDownload\nupkg\BingImageDownload.$(appveyor_build_version).nupkg
name: BingImageDownload.$(appveyor_build_version).nupkg
deploy:
- provider: NuGet
api_key: $(blythmeister_nuget_key)
artifact: BingImageDownload.$(appveyor_build_version).nupkg
on:
branch: master
- provider: GitHub
tag: v$(appveyor_build_version)
release: v$(appveyor_build_version)
description: Release v$(appveyor_build_version)
auth_token: $(blythmeister_github_key)
repository: BlythMeister/BingImageDownload
artifact: BingImageDownload.$(appveyor_build_version).nupkg
on:
branch: master