From 9444543c1f5decaad7e09f09ec85b5025f7e66f1 Mon Sep 17 00:00:00 2001 From: nickreynolds Date: Tue, 9 Apr 2024 09:53:43 -0400 Subject: [PATCH] fix: update token env vars in push workflow (#229) --- .github/workflows/build-test-publish-on-push.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test-publish-on-push.yml b/.github/workflows/build-test-publish-on-push.yml index 98df327..2f691b1 100644 --- a/.github/workflows/build-test-publish-on-push.yml +++ b/.github/workflows/build-test-publish-on-push.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - token: ${{ secrets.GH_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} - uses: pnpm/action-setup@v2 with: version: 8 @@ -56,7 +56,7 @@ jobs: needs: build-test-publish env: NPM_TOKEN: ${{secrets.NPM_TOKEN}} - GH_TOKEN: ${{secrets.GH_TOKEN}} + GH_TOKEN: ${{secrets.GITHUB_TOKEN}} GH_USER: ${{secrets.GITHUB_USER}} GH_EMAIL: ${{secrets.GITHUB_EMAIL}} runs-on: ${{ matrix.os }} @@ -69,7 +69,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - token: ${{ secrets.GH_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} ref: ${{ github.ref }} - uses: pnpm/action-setup@v2