diff --git a/Scripts/post_build.ps1 b/Scripts/post_build.ps1 index e411b49be..5d9a0baf6 100644 --- a/Scripts/post_build.ps1 +++ b/Scripts/post_build.ps1 @@ -57,19 +57,6 @@ function Validate-Directory ($output) { New-Item $output -ItemType Directory -Force } -function Pack-Plugin ($path, $output) { - Write-Host "Begin build nuget library" - - $project = "$path\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" - - Write-Host "Packing: $project" - Write-Host "Output path: $output" - - dotnet pack $project --include-symbols --configuration Release --output $output - - Write-Host "End build nuget library" -} - function Zip-Release ($path, $version, $output) { Write-Host "Begin zip release" @@ -143,7 +130,6 @@ function Main { $isInCI = $env:APPVEYOR if ($isInCI) { - Pack-Plugin $p $o Zip-Release $p $v $o } diff --git a/appveyor.yml b/appveyor.yml index 6b600f33b..55bd2ed6b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,4 +22,8 @@ build: project: Flow.Launcher.sln after_test: artifacts: -- path: 'Output\Packages\*' \ No newline at end of file +- path: 'Output\Packages\*' +- path: 'Output\Release\Flow.Launcher.Plugin.*.nupkg' + name: Plugin nupkg +- path: 'Output\Release\Flow.Launcher.Plugin.*.snupkg' + name: Plugin snupkg \ No newline at end of file