From 1c1964eb2ccb863c1b5bed836cddd62cac752527 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sun, 20 Jun 2021 05:19:13 +0100 Subject: [PATCH] renames the 'deploy' job --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8c5d5ee..c94aba3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,7 +25,7 @@ publish: when: always script: - dotnet publish --configuration Release -deploy: +deploy-to-gitlab: stage: deploy artifacts: paths: @@ -38,7 +38,7 @@ deploy: - dotnet nuget push src/*/bin/Release/*.nupkg -s gitlab only: - master -pack: +deploy-to-apple: stage: deploy artifacts: paths: @@ -47,7 +47,7 @@ pack: script: - dotnet pack --configuration Release --no-restore - cd src/nuget-cli - - dotnet run push -s $NUGETSOURCE -k $NUGETSOURCEAPIKEY ../nuget-host/bin/Release/nuget-host.*.nupkg + - dotnet run push -s $NUGETSOURCE -k $NUGETSOURCEAPIKEY ../*/bin/Release/*.nupkg stages: - build - test