diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 59e236a..8406e69 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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