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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ jobs:
build:
# TODO: Add ubuntu-latest
runs-on: windows-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -58,5 +61,5 @@ jobs:
if: ${{ always() }} # Always run this step even on failure

- name: Push NuGet package
run: dotnet nuget push artifacts\*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} --skip-duplicate
run: dotnet nuget push artifacts\*.nupkg --source https://api.nuget.org/v3/index.json --skip-duplicate
if: startsWith(github.ref, 'refs/tags/v')
Loading