Skip to content

Commit 142573f

Browse files
authored
Updated publishing-your-site.md (#6335)
1 parent 34d789b commit 142573f

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

docs/publishing-your-site.md

+8
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ contents:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- uses: actions/checkout@v4
38+
- name: Configure Git Credentials
39+
run: |
40+
git config user.name github-actions[bot]
41+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
3842
- uses: actions/setup-python@v4
3943
with:
4044
python-version: 3.x
@@ -90,6 +94,10 @@ contents:
9094
if: github.event.repository.fork == false
9195
steps:
9296
- uses: actions/checkout@v4
97+
- name: Configure Git Credentials
98+
run: |
99+
git config user.name github-actions[bot]
100+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
93101
- uses: actions/setup-python@v4
94102
with:
95103
python-version: 3.x

0 commit comments

Comments
 (0)