From 04f11d4c2a36e5b7df69e059aee62b57f239a455 Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Tue, 8 Dec 2020 09:43:00 +0100 Subject: [PATCH] Will braces fix it? Removed filter for easier test Added echo commands to check too! --- .circleci/config.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index afc42a2..3e9e9e0 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,9 @@ jobs: executor: win/default steps: - checkout + - run: | + echo $NUGET_AUTH_TOKEN + echo ${NUGET_AUTH_TOKEN} - run: name: Restore packages command: nuget restore GrasshopperAsyncComponent.sln @@ -20,7 +23,7 @@ jobs: - run: name: Set nuget Api Key command: | - nuget setApiKey $NUGET_AUTH_TOKEN + nuget setApiKey ${NUGET_AUTH_TOKEN} - run: name: Push NuGet command: nuget push *.nupkg -Source https://api.nuget.org/v3/index.json @@ -29,12 +32,6 @@ jobs: workflows: publish: jobs: - - build-and-publish: - filters: - tags: - only: /^v.*/ - branches: - ignore: /.*/ - + - build-and-publish \ No newline at end of file