Skip to content

Commit

Permalink
fix: update token env vars in push workflow (#229)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickreynolds committed Apr 9, 2024
1 parent 8569608 commit 9444543
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-publish-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}
Expand All @@ -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
Expand Down

0 comments on commit 9444543

Please sign in to comment.