Update .gitea/workflows/publish-nuget.yml
Pack and Push NuGet Package / publish (push) Successful in 1m4s

This commit is contained in:
mc
2026-09-13 16:40:02 +02:00
parent a8c04bdcf9
commit 3a841a63d7
+4 -2
View File
@@ -32,7 +32,9 @@ jobs:
dotnet pack ./code/portaloggy/portaloggy.csproj -c Release -o out dotnet pack ./code/portaloggy/portaloggy.csproj -c Release -o out
- name: Push to Gitea NuGet Registry - name: Push to Gitea NuGet Registry
env:
CI_TOKEN: ${{ secrets.CI_TOKEN }}
run: | run: |
dotnet nuget push out/*.nupkg \ dotnet nuget push out/*.nupkg \
--api-key "${{ secrets.NUGET_PUBLISH_TOKEN }}" \ --api-key "$CI_TOKEN" \
--source "https://gitea.masita.net/api/packages/${{ secrets.NUGET_PUBLISH_USERNAME }}/nuget/index.json" --source "https://gitea.masita.net/api/packages/ci/nuget/index.json"