Skip to content

Commit

Permalink
chore: use system github token
Browse files Browse the repository at this point in the history
  • Loading branch information
tschoffelen committed Mar 7, 2024
1 parent c9acadc commit 4b3e20a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: read
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- name: Check out repository code
Expand All @@ -20,7 +22,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 'lts/*'
node-version: 20
cache: yarn

- name: Install dependencies
Expand All @@ -34,7 +36,7 @@ jobs:

- name: Release
env:
GITHUB_TOKEN: ${{secrets.CI_GITHUB_TOKEN}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
NPM_TOKEN: ${{secrets.NPM_TOKEN}}
NPM_CONFIG_PROVENANCE: true
run: yarn release

0 comments on commit 4b3e20a

Please sign in to comment.