Skip to content

Commit

Permalink
fix(ci): use dedicated token for automatic releases (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc committed Dec 22, 2023
1 parent cf1bd16 commit 39b542a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:

- name: Install release-it
run: npm install --global release-it @release-it/conventional-changelog

- name: Set git identity
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git config user.name "release bot"
git config user.email "release-bot@users.noreply.github.com"
- name: Release
run: release-it --ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.RELEASE_IT_TOKEN }}

0 comments on commit 39b542a

Please sign in to comment.