From 785a87dd691dc48b6cad7692d037f1bb257e4be1 Mon Sep 17 00:00:00 2001 From: "phnx47[bot]" <78849906+phnx47-bot@users.noreply.github.com> Date: Sun, 5 Jan 2025 14:00:58 +0000 Subject: [PATCH] update github token --- .github/workflows/ci.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 193e7bb..77250d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,11 @@ jobs: with: name: packages - name: Push to pkg.github.com - run: dotnet nuget push "*.nupkg" -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json -k ${{ secrets.GH_FULL_PAT }} --skip-duplicate + run: | + dotnet nuget push "*.nupkg" \ + --skip-duplicate \ + -k ${{ secrets.GITHUB_TOKEN }} \ + -s https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json release: name: Create GitHub release @@ -85,4 +89,7 @@ jobs: with: name: packages - name: Push to nuget.org - run: dotnet nuget push "*.nupkg" -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_DEPLOY_KEY }} + run: | + dotnet nuget push "*.nupkg" \ + -k ${{ secrets.NUGET_DEPLOY_KEY }} \ + -s https://api.nuget.org/v3/index.json