diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f9e3dba..b65141b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -52,9 +52,14 @@ uptool: dotnet pack --version-suffix "$suffix" -c Release -o . dotnet nuget push $(Get-Item $(Resolve-Path *.nupkg).Path).Name -k $K8S_SECRET_NUGET -s https://api.nuget.org/v3/index.json cd .. + mkdir nugets + cp $(Get-Item $(Resolve-Path Misc\*.nupkg).Path).Name nugets + cp $(Get-Item $(Resolve-Path W32\*.nupkg).Path).Name nugets + cp $(Get-Item $(Resolve-Path Commandline\*.nupkg).Path).Name nugets artifacts: paths: - package.zip - app.xml + - nugets only: - master