Skip to content

Commit

Permalink
fix: Configure Git user identity for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
king04aman authored Jan 8, 2025
1 parent 079ebf5 commit 3d6becb
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 project
run: npm run build

- name: Configure Git
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
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 3d6becb

Please sign in to comment.