Skip to content

Commit 0bbfdf5

Browse files
committed
fix: add --global kwargs to git config calls to see if that fixes the error
1 parent 2072585 commit 0bbfdf5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/update-demo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
- name: Configure Git
3030
working-directory: "${{ github.workspace }}/cookiecutter-robust-python"
3131
run: |
32-
git config user.name "github-actions[bot]"
33-
git config user.email "github-actions[bot]@users.noreply.github.com"
32+
git config --global user.name "github-actions[bot]"
33+
git config --global user.email "github-actions[bot]@users.noreply.github.com"
3434
3535
- name: Checkout Demo
3636
uses: actions/checkout@v4

0 commit comments

Comments
 (0)