Skip to content

Commit

Permalink
Publish all packages, not only the root one
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardoboss committed Oct 14, 2024
1 parent 95b24d0 commit d6a2991
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ jobs:
- name: Build
run: dotnet build -c Release
- name: Publish NuGet Package
run: dotnet nuget push TRENZ.Lib.RazorMail/bin/Release/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
run: dotnet nuget push TRENZ.Lib.RazorMail.Core/bin/Release/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
- name: Publish NuGet Package
run: dotnet nuget push TRENZ.Lib.RazorMail.MailKit/bin/Release/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
- name: Publish NuGet Package
run: dotnet nuget push TRENZ.Lib.RazorMail.SystemNet/bin/Release/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
- name: Publish GitHub Release
uses: softprops/action-gh-release@v2
with:
Expand Down

0 comments on commit d6a2991

Please sign in to comment.