From 25069e5aa209b807196477163c2b5b719cd48764 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Wed, 16 Jun 2021 20:14:53 +0100 Subject: [PATCH] try++ --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e0221fa..e54a861 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ before_script: - dotnet restore after_script: - - dotnet nuget delete gitlab + - dotnet nuget source remove gitlab nonreg: stage: test @@ -43,7 +43,7 @@ deploy: when: always script: - dotnet pack -c Release - - dotnet nuget add source -name gitlab --username gitlab+deploy-token-2 --password $CI_JOB_TOKEN --store-password-in-clear-text "$CI_SERVER_URL/api/v4/projects/$CI_PROJECT_ID/packages/nuget/index.json" + - dotnet nuget add source --name gitlab --username gitlab+deploy-token-2 --password $CI_JOB_TOKEN --store-password-in-clear-text "$CI_SERVER_URL/api/v4/projects/$CI_PROJECT_ID/packages/nuget/index.json" - dotnet nuget push src/*/bin/Release/*.nupkg -s gitlab only: - master