Skip to content

Commit fba4da8

Browse files
committed
Update deploy.yml
Add git identity, to upload to github pages using CI/CD rather than manual deployment.
1 parent e75431b commit fba4da8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ jobs:
2525
- name: Build
2626
run: npm run build
2727

28+
- name: Setup git identity
29+
run: |
30+
git config --global user.email "[email protected]"
31+
git config --global user.name "github-actions[bot]"
32+
2833
- name: Deploy to GitHub Pages
2934
run: npm run deploy
3035
env:

0 commit comments

Comments
 (0)