From 08638258143eb62704e2db8dae22717dd956a571 Mon Sep 17 00:00:00 2001 From: Xavier Pouyat Date: Wed, 20 Dec 2023 22:07:58 +0100 Subject: [PATCH] Update --- .github/workflows/publishnuget.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publishnuget.yml b/.github/workflows/publishnuget.yml index 884b4c6..28787b1 100644 --- a/.github/workflows/publishnuget.yml +++ b/.github/workflows/publishnuget.yml @@ -25,6 +25,7 @@ defaults: jobs: create_nuget: runs-on: windows-latest + needs: [ run_test ] steps: - uses: actions/checkout@v3 @@ -69,9 +70,9 @@ jobs: # Publish only when creating a GitHub Release # https://docs.github.com/en/repositories/releasing-projects-on-github/managing-releases-in-a-repository # You can update this logic if you want to manage releases differently - #if: github.event_name == 'release' + # if: github.event_name == 'release' runs-on: windows-latest - needs: [ run_test ] + needs: [ create_nuget ] steps: # Download the NuGet package created in the previous job - uses: actions/download-artifact@v3