From 87b4f3fd089c7695b9615e5c12ba5d78d9b8648a Mon Sep 17 00:00:00 2001 From: "J. Fronny" <6260391-JFronny@users.noreply.gitlab.com> Date: Thu, 18 Jun 2020 18:15:20 +0000 Subject: [PATCH] Update .gitlab-ci.yml --- .gitlab-ci.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 01f0695..cf63dfe 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,22 +44,23 @@ uptool: $suffix = "$tmp1.$tmp2" cd Misc dotnet pack --version-suffix "$suffix" -c Release -o . - dotnet nuget push $(Get-Item $(Resolve-Path *.nupkg).Path).Name -k $K8S_SECRET_NUGET -Source https://api.nuget.org/v3/index.json + dotnet nuget push $(Get-Item $(Resolve-Path *.nupkg).Path).Name -k $K8S_SECRET_NUGET -s https://api.nuget.org/v3/index.json cd ..\W32 dotnet pack --version-suffix "$suffix" -c Release -o . - dotnet nuget push $(Get-Item $(Resolve-Path *.nupkg).Path).Name -k $K8S_SECRET_NUGET -Source https://api.nuget.org/v3/index.json + dotnet nuget push $(Get-Item $(Resolve-Path *.nupkg).Path).Name -k $K8S_SECRET_NUGET -s https://api.nuget.org/v3/index.json cd ..\Commandline dotnet pack --version-suffix "$suffix" -c Release -o . - dotnet nuget push $(Get-Item $(Resolve-Path *.nupkg).Path).Name -k $K8S_SECRET_NUGET -Source https://api.nuget.org/v3/index.json + 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 + #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