Skip to content

Commit

Permalink
refactor: Update git user settings
Browse files Browse the repository at this point in the history
Update the git user name and email in the release workflow
  • Loading branch information
danilowoz committed Jan 3, 2024
1 parent 7144ed4 commit bc4535a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
with:
# pulls all commits (needed for lerna / semantic release to correctly version)
fetch-depth: "0"
token: ${{ secrets.CODESANDBOT_TOKEN }}

- name: Setup | Authenticate with Registry
run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
Expand All @@ -72,8 +73,8 @@ jobs:

- name: Setup | Configure git user
run: |
git config user.name 'github-actions[bot]'
git config user.email 'github-actions[bot]@users.noreply.github.com'
git config user.name 'codesandbot[bot]'
git config user.email 'codesandbot[bot]@users.noreply.github.com'
- name: Install dependencies and cache
uses: bahmutov/npm-install@v1
Expand Down

0 comments on commit bc4535a

Please sign in to comment.