Skip to content

Commit

Permalink
Configure Git settings for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Titou325 committed Jan 30, 2024
1 parent 3c5cd19 commit 9191ce0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
registry-url: "https://registry.npmjs.org"
- run: npm install
- run: npm run build
- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
- run: npm version patch -m "Bump version to %s [skip ci]"
- run: npm publish --access public
env:
Expand Down

0 comments on commit 9191ce0

Please sign in to comment.