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
9 changes: 9 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,9 @@ jobs:

- name: Download build artifacts
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: build-artifacts
path: ${{ github.workspace }}/build-artifacts

- name: Authenticate to GitHub registry
run: dotnet nuget add source
Expand Down Expand Up @@ -149,6 +152,9 @@ jobs:

- name: Download build artifacts
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: build-artifacts
path: ${{ github.workspace }}/build-artifacts

- name: Upload release asset
run: gh release upload ${{ github.event.release.tag_name }}
Expand All @@ -174,6 +180,9 @@ jobs:

- name: Download build artifacts
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
with:
name: build-artifacts
path: ${{ github.workspace }}/build-artifacts

- name: Publish to NuGet.org (Releases only)
run: dotnet nuget push
Expand Down