Skip to content

Commit 0f7fe66

Browse files
committed
feat: configure git settings for GitHub Actions deployment to Hugging Face
1 parent 1ee46b8 commit 0f7fe66

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/deploy-to-huggingface.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ jobs:
2020
with:
2121
python-version: '3.11'
2222
cache: 'pip'
23+
24+
- name: Config git
25+
run: |
26+
git config --global credential.helper store
27+
git config --global user.email "[email protected]"
28+
git config --global user.name "github-actions"
2329
2430
- name: Configure Hugging Face
2531
env:

0 commit comments

Comments
 (0)