Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,19 +85,10 @@ jobs:
- name: Validate NuGet package
run: dotnet nuget verify ./nupkg/*.nupkg --all || true # 'verify' checks signatures; use 'true' fallback if unsigned

# --- Trusted Publishing: OIDC login
- name: NuGet login (OIDC → temp API key)
env:
NUGET_USER: ${{ secrets.NUGET_USER }}
uses: NuGet/login@v1
id: nuget_login
with:
user: $NUGET_USER

# --- Push to nuget.org ---
- name: Push to NuGet.org
env:
NUGET_API_KEY: ${{ steps.nuget_login.outputs.NUGET_API_KEY }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
run: >
dotnet nuget push ./nupkg/*.nupkg
--api-key $NUGET_API_KEY
Expand Down