Skip to content

Commit de7f230

Browse files
Fix(actions): Init git user
1 parent 41455da commit de7f230

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,14 @@ jobs:
2828
node-version: 22
2929
cache: npm
3030

31+
- name: ⚙️ Setup git
32+
run: |
33+
git config --global user.email [email protected]
34+
git config --global user.name github-actions-bot
35+
3136
- name: 📥 Download deps
3237
run: make doc-install
38+
3339

3440
- name: 🔨 Build
3541
run: make doc-build
@@ -68,11 +74,6 @@ jobs:
6874
- name: 📥 Download deps
6975
run: npm install
7076

71-
- name: ⚙️ Setup git
72-
run: |
73-
git config --global user.email [email protected]
74-
git config --global user.name github-actions-bot
75-
7677
- name: 🔨 Build
7778
run: npm run build:demo
7879

0 commit comments

Comments
 (0)