From 9385c0992ad7fc40fd839776df36ba43588d1636 Mon Sep 17 00:00:00 2001 From: Foowy <49217685+Foowy@users.noreply.github.com> Date: Sun, 16 Aug 2026 09:23:16 +0000 Subject: [PATCH] fix(workflows): don't fail nuget publish when release tag already exists The daily build republishes packages whose version wasn't bumped since the last successful run. dotnet nuget push --skip-duplicate already tolerates this for the package itself, but rickstaa/action-create-tag was still hard-failing every Publish *Nuget job on reruns because the git tag from the prior publish already exists. --- .github/actions/publish-nuget/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/publish-nuget/action.yml b/.github/actions/publish-nuget/action.yml index f3aa54866..f0769a812 100644 --- a/.github/actions/publish-nuget/action.yml +++ b/.github/actions/publish-nuget/action.yml @@ -47,3 +47,4 @@ runs: with: tag: ${{ steps.version.outputs.tag }} message: "${{ inputs.project-file-path }} v${{ steps.version.outputs.version }}" + tag_exists_error: false