Skip to content

Commit

Permalink
ci: Update GITHUB_TOKEN for semantic-release (#62)
Browse files Browse the repository at this point in the history
This PR replaces my personal access token with the `GITHUB_TOKEN`
provided by GitHub Actions.
  • Loading branch information
ajschmidt8 authored Dec 14, 2023
1 parent 8149e72 commit 8dc7799
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
jobs:
release:
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
steps:
- name: Checkout
uses: actions/checkout@v3
Expand All @@ -21,7 +25,7 @@ jobs:
node-version: "lts/*"
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.WRITE_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PYPI_TOKEN: ${{ secrets.RAPIDSAI_PYPI_TOKEN }}
run: |
npm install
Expand Down

0 comments on commit 8dc7799

Please sign in to comment.