-
-
Notifications
You must be signed in to change notification settings - Fork 123
/
Copy pathrelease_appveyor.yml
45 lines (45 loc) · 1.07 KB
/
release_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
version: 1.7.0.{build}
image: Visual Studio 2022
branches:
only:
- master
skip_tags: true
platform: Any CPU
configuration: Release
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
before_build:
- ps: dotnet --version
- ps: dotnet restore
build:
project: SQLite.CodeFirst.sln
parallel: true
verbosity: normal
artifacts:
- path: SQLite.CodeFirst\bin
name: Assemblies
- path: SQLite.CodeFirst\bin\Release\*.nupkg
name: NuPkg
deploy:
# Encrypt with https://ci.appveyor.com/tools/encrypt
- provider: NuGet
api_key:
secure: fdOvSLLttfWbXxkmrgNG+jfczNAqx0HOIqYeVhToHGvezVwts758wz+sbGkv2RhZ
on:
branch: master
- provider: GitHub
tag: v$(appveyor_build_version)
release: v$(appveyor_build_version)
description: https://www.nuget.org/packages/SQLite.CodeFirst/
auth_token:
secure: e3cqaFy9PzI9TAdZJBIDy97Bfbwa7j0EXe2yw7Ev9aJXK0Q+3mnULqb1VU4P7BWR
artifact: Assemblies,NuPkg
draft: true
on:
branch: master