Skip to content

Commit a48729b

Browse files
committed
Updated release_appveyor.yml
1 parent 8248cce commit a48729b

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

release_appveyor.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ branches:
33
only:
44
- master
55
skip_tags: true
6-
configuration: Release
76
platform: Any CPU
87
assembly_info:
98
patch: true
@@ -12,12 +11,24 @@ assembly_info:
1211
assembly_file_version: '{version}'
1312
assembly_informational_version: '{version}'
1413
build:
15-
publish_nuget: true
16-
publish_nuget_symbols: true
14+
project: BuildAllConfigurations.proj
1715
verbosity: normal
16+
after_build:
17+
- ps: >-
18+
Write-Host $env:APPVEYOR_BUILD_FOLDER
19+
20+
cd $env:APPVEYOR_BUILD_FOLDER
21+
22+
cd '.nuget'
23+
24+
./nuget.exe pack '..\SQLite.CodeFirst\SQLite.CodeFirst.csproj' -Properties -Symbols -OutputDirectory '..\SQLite.CodeFirst\bin'
1825
artifacts:
19-
- path: SQLite.CodeFirst\bin\*\SQLite.CodeFirst.dll
20-
name: SQLiteCodeFirst
26+
- path: SQLite.CodeFirst\bin\Debug**\SQLite.CodeFirst.*
27+
name: Debug
28+
- path: SQLite.CodeFirst\bin\Release\**\SQLite.CodeFirst.dll
29+
name: Release
30+
- path: SQLite.CodeFirst\bin\*.nupkg
31+
name: NuPkg
2132
deploy:
2233
- provider: NuGet
2334
api_key:
@@ -30,7 +41,7 @@ deploy:
3041
description: https://www.nuget.org/packages/SQLite.CodeFirst/
3142
auth_token:
3243
secure: e3cqaFy9PzI9TAdZJBIDy97Bfbwa7j0EXe2yw7Ev9aJXK0Q+3mnULqb1VU4P7BWR
33-
artifact: SQLiteCodeFirst
44+
artifact: Release
3445
draft: true
3546
on:
3647
branch: master

0 commit comments

Comments
 (0)