Skip to content

Commit dbdc1b6

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

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/deploy-docs.yml

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

0 commit comments

Comments
 (0)