Skip to content

Commit 92cf49d

Browse files
committed
Fix: Need to set git config
1 parent ef15903 commit 92cf49d

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ jobs:
2626
uses: actions/checkout@v6
2727
with:
2828
fetch-tags: true
29+
- name: Set user name and email for git
30+
run: |
31+
# Needed so we can apply patches
32+
git config --global user.name "GitHub Actions"
33+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
2934
- uses: ./.github/actions/generate-docs
3035
with:
3136
build: all_with_old

0 commit comments

Comments
 (0)