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
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
- name: NuGet login (OIDC → temp API key)
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
uses: NuGet/login@v1
id: login
with:
Expand All @@ -190,7 +191,7 @@ jobs:
}
}
name: Publish NuGet packages
if: always()
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository
env:
NuGetApiKey: ${{steps.login.outputs.NUGET_API_KEY}}
FeedzApiKey: ${{ secrets.FEEDZ_APIKEY }}
Expand Down
Loading