From 4a487688b23ba2ef40b6c71705b2d966ed393063 Mon Sep 17 00:00:00 2001 From: agneszitte Date: Tue, 17 Mar 2026 16:56:04 -0400 Subject: [PATCH] chore(ci): Add --skip-duplicate to NuGet push for idempotent re-runs --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 476513f..83f83d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -207,7 +207,7 @@ jobs: - name: NuGet Push shell: pwsh run: | - dotnet nuget push artifacts\*.nupkg -s https://api.nuget.org/v3/index.json -k "${{ secrets.NUGET_ORG_API_KEY }}" + dotnet nuget push artifacts\*.nupkg -s https://api.nuget.org/v3/index.json -k "${{ secrets.NUGET_ORG_API_KEY }}" --skip-duplicate publish_prod: name: Publish Production @@ -228,7 +228,7 @@ jobs: - name: NuGet Push shell: pwsh run: | - dotnet nuget push artifacts\*.nupkg -s https://api.nuget.org/v3/index.json -k "${{ secrets.NUGET_ORG_API_KEY }}" + dotnet nuget push artifacts\*.nupkg -s https://api.nuget.org/v3/index.json -k "${{ secrets.NUGET_ORG_API_KEY }}" --skip-duplicate tag_release: name: Tag Release