Update .gitlab-ci.yml

This commit is contained in:
J. Fronny 2020-06-18 18:40:59 +00:00
parent f6644550a6
commit 5cb6fd677a
1 changed files with 6 additions and 3 deletions

View File

@ -44,13 +44,16 @@ 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 -s https://api.nuget.org/v3/index.json
$tmp = $(Get-Item $(Resolve-Path *.nupkg).Path).Name
dotnet nuget push $tmp -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 -s https://api.nuget.org/v3/index.json
$tmp = $(Get-Item $(Resolve-Path *.nupkg).Path).Name
dotnet nuget push $tmp -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 -s https://api.nuget.org/v3/index.json
$tmp = $(Get-Item $(Resolve-Path *.nupkg).Path).Name
dotnet nuget push $tmp -k $K8S_SECRET_NUGET -s https://api.nuget.org/v3/index.json
cd ..
mkdir nugets
dotnet nuget push -h