From c39849df43db768edc2c78e6230d4ed9636bc855 Mon Sep 17 00:00:00 2001 From: Mihail Gribkov <61027276+Misha-133@users.noreply.github.com> Date: Thu, 8 May 2025 20:22:15 +0300 Subject: [PATCH] more control over nightly feeds (#3112) --- .github/workflows/dotnet.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index f6a72ede..c40f7bca 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -118,11 +118,11 @@ jobs: nuget setApiKey ${{ secrets.GITHUB_TOKEN }} -Source ${{ env.REPOSITORY_URL }} - name: Push Nightly - if: vars.PUSH_NIGHTLY == 'true' + if: vars.PUSH_NIGHTLY_CUSTOM == 'true' run: nuget push "${{ env.ArtifactStagingDirectory }}/*.nupkg" -Source ${{ vars.NIGHTLY_FEED }} - name: Push Nightly to GitHub Pacakges - if: vars.PUSH_NIGHTLY == 'true' + if: vars.PUSH_NIGHTLY_GITHUB == 'true' run: nuget push "${{ env.ArtifactStagingDirectory }}/*.nupkg" -Source ${{ env.REPOSITORY_URL }} - name: Push Release