Skip to content

Commit

Permalink
fix cicd set git author id for gh-pages deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
avidrucker committed Oct 20, 2024
1 parent 3b65d28 commit e620f36
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
- name: Build the app
run: npm run build

- name: Configure Git author
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
- name: Deploy to GitHub Pages
run: npm run deploy
env:
Expand Down

0 comments on commit e620f36

Please sign in to comment.