Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,17 @@ jobs:
run: dotnet pack -c Release /p:Version=${{ github.event.release.tag_name }} /p:PackageReleaseNotes="See https://github.com/Abhith/Code.Library/releases/tag/${{ github.event.release.tag_name }}"
working-directory: ./src
- name: Archive Code.Library NuGet Package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Code.Library
path: ./src/Code.Library/bin/Release/Code.Library.${{ github.event.release.tag_name }}.nupkg
- name: Archive Code.Library.Application NuGet Package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Code.Library.Application
path: ./src/Code.Library.Application/bin/Release/Code.Library.Application.${{ github.event.release.tag_name }}.nupkg
- name: Archive Code.Library.AspNetCore NuGet Package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: Code.Library.AspNetCore
path: ./src/Code.Library.AspNetCore/bin/Release/Code.Library.AspNetCore.${{ github.event.release.tag_name }}.nupkg
Expand Down