remove nuget verification for now
Some checks failed
Publish NuGets / build (release) Failing after 18s

This commit is contained in:
Mathias Beaulieu-Duncan 2024-12-22 12:22:51 -05:00
parent e7ebf0cf19
commit 3478750bc9
Signed by: mathias
GPG Key ID: 8C3667DADE3B6303

View File

@ -33,9 +33,6 @@ jobs:
- name: Build and Pack NuGet Package
run: dotnet pack -c Release -o ./artifacts -p:Version=${{ env.RELEASE_VERSION }}
- name: Validate NuGet Package
run: dotnet nuget verify ./artifacts/*.nupkg
- 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 }}