remove extra layer of publishing

This commit is contained in:
Mathias Beaulieu-Duncan 2024-12-22 13:40:32 -05:00
parent 6fee2c5c9a
commit 7e1e5c76b7
Signed by: mathias
GPG Key ID: 8C3667DADE3B6303

View File

@ -33,10 +33,6 @@ jobs:
- name: Build and Pack NuGet Package
run: dotnet pack -c Release -o ./artifacts -p:Version=${{ env.RELEASE_VERSION }}
- name: Publish Nugets to NuGet.org
- name: Publish to NuGet.org
run: |
dotnet nuget push ./artifacts/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
- name: Publish Symbols to NuGet.org
run: |
dotnet nuget push ./artifacts/*.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}