Skip to content

Commit 85bd882

Browse files
committed
fix: git credentials
1 parent 7553f7f commit 85bd882

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/mkdoc.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,16 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v4
15+
- name: Configure Git Credentials # taken from material for mkdocs
16+
run: |
17+
git config user.name github-actions[bot]
18+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
1519
1620
- name: Set up Python
1721
uses: actions/setup-python@v3
1822
with:
1923
python-version: '3.x'
24+
2025
- name: install self
2126
run: |
2227
pip install .

0 commit comments

Comments
 (0)