From fa8976a7b88254510e4e368c4287a5a81506d61d Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Tue, 8 Dec 2020 10:15:40 +0100 Subject: [PATCH] Back to single publish job --- .circleci/config.yml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index b52a537..df3830f 100755 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ orbs: win: circleci/windows@2.2.0 jobs: - build: + publish_nuget: executor: win/default steps: - checkout @@ -14,9 +14,6 @@ jobs: - run: name: Build solution command: msbuild GrasshopperAsyncComponent.sln /p:Configuration=Release - publish: - executor: win/default - steps: - run: name: Pack NuGet command: cd GrasshopperAsyncComponent; nuget pack GrasshopperAsyncComponent.csproj -Prop Configuration=Release @@ -28,13 +25,7 @@ jobs: workflows: publish: jobs: - - build: - filters: - tags: - only: /^v.*/ - - publish: - requires: - - build + - publish_nuget: filters: tags: only: /^v.*/