diff --git a/.gitea/workflows/publish-nugets.yaml b/.gitea/workflows/publish-nugets.yaml index 2e7a011..f8f6720 100644 --- a/.gitea/workflows/publish-nugets.yaml +++ b/.gitea/workflows/publish-nugets.yaml @@ -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 }} \ No newline at end of file + dotnet nuget push ./artifacts/*.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }} \ No newline at end of file