From 6f1ab85332713c61228a1a94e2b9628231ac802a Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Tue, 8 Dec 2020 09:51:50 +0100 Subject: [PATCH] $env is the key? --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ab915b3..082375e 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,7 +9,7 @@ jobs: steps: - checkout - run: echo NUGET_AUTH_TOKEN - - run: echo $NUGET_AUTH_TOKEN + - run: echo $env:NUGET_AUTH_TOKEN - run: echo ${NUGET_AUTH_TOKEN} - run: name: Restore packages @@ -23,7 +23,7 @@ jobs: - run: name: Set nuget Api Key command: | - nuget setApiKey ${NUGET_AUTH_TOKEN} + nuget setApiKey $env:NUGET_AUTH_TOKEN - run: name: Push NuGet command: nuget push *.nupkg -Source https://api.nuget.org/v3/index.json