Skip to content

Commit

Permalink
chore: added git identity before releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
yann510 committed Nov 3, 2024
1 parent d88bbcf commit e9174f3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ jobs:
- name: Run benchmark
run: npm run benchmark

- name: Configure Git identity (required to create NX git commit and tags)
if: github.ref == 'refs/heads/master'
run: |
git config --global user.email "[email protected]"
git config --global user.name "NX CI Bot"
- name: Release + Publish package
if: github.ref == 'refs/heads/master'
env:
Expand Down

0 comments on commit e9174f3

Please sign in to comment.