diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 41770d5..4848314 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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