From 93a3dc9fdfc485527ddeb9024af4cf0a5b5fb989 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20J=C3=B6rg?= Date: Thu, 5 Feb 2026 18:34:21 +0100 Subject: [PATCH] fix: Remove source --- publish-nuget/action.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/publish-nuget/action.yaml b/publish-nuget/action.yaml index e5354c5..3005cd4 100644 --- a/publish-nuget/action.yaml +++ b/publish-nuget/action.yaml @@ -50,6 +50,7 @@ runs: shell: bash run: | nix-shell --run 'set -o pipefail; set -o nounset; set -o errexit; + dotnet nuget remove source gitea 2>&1 > /dev/null || true dotnet nuget add source --name ${{ inputs.source-name }} "https://${{ inputs.registry }}/api/packages/${{ inputs.registry-owner }}/nuget/index.json"' - name: Restore dependencies