From 7e1e5c76b70306b420da693cafd0d93fc78091d7 Mon Sep 17 00:00:00 2001 From: Mathias Beaulieu-Duncan Date: Sun, 22 Dec 2024 13:40:32 -0500 Subject: [PATCH] remove extra layer of publishing --- .gitea/workflows/publish-nugets.yaml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) 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