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
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

permissions:
id-token: write
contents: read
contents: write

env:
# For tag pushes: strip the 'v' prefix (v1.0.0 -> 1.0.0)
Expand Down Expand Up @@ -64,6 +64,7 @@ jobs:
--output ./artifacts

- name: Nuget Login (OIDC)
id: login
uses: NuGet/login@v1
with:
user: OluwaVader
Expand All @@ -73,6 +74,7 @@ jobs:
dotnet nuget push "./artifacts/*.nupkg"
--source https://api.nuget.org/v3/index.json
--skip-duplicate
--api-key "${{ steps.login.outputs.NUGET_API_KEY }}"

- name: Create tag if not exists
if: github.event_name == 'workflow_dispatch'
Expand Down