Update .gitlab-ci.yml

This commit is contained in:
J. Fronny 2020-06-18 19:47:23 +00:00
parent f3cb5e136c
commit 4969a420ee
1 changed files with 3 additions and 3 deletions

View File

@ -46,17 +46,17 @@ uptool:
dotnet pack --version-suffix "$suffix" -c Release -o .
$tmp = $(Get-Item $(Resolve-Path *.nupkg).Path).Name
echo $tmp
dotnet nuget push $tmp -k $K8S_SECRET_NUGET -s https://api.nuget.org/v3/index.json
dotnet nuget push $tmp -s https://api.nuget.org/v3/index.json -k $K8S_SECRET_NUGET
cd ..\W32
dotnet pack --version-suffix "$suffix" -c Release -o .
$tmp = $(Get-Item $(Resolve-Path *.nupkg).Path).Name
echo $tmp
dotnet nuget push $tmp -k $K8S_SECRET_NUGET -s https://api.nuget.org/v3/index.json
dotnet nuget push $tmp -s https://api.nuget.org/v3/index.json -k $K8S_SECRET_NUGET
cd ..\Commandline
dotnet pack --version-suffix "$suffix" -c Release -o .
$tmp = $(Get-Item $(Resolve-Path *.nupkg).Path).Name
echo $tmp
dotnet nuget push $tmp -k $K8S_SECRET_NUGET -s https://api.nuget.org/v3/index.json
dotnet nuget push $tmp -s https://api.nuget.org/v3/index.json -k $K8S_SECRET_NUGET
cd ..
mkdir nugets
dotnet nuget push -h