David Pomerenke
commited on
Commit
·
006f88d
1
Parent(s):
ce9de0c
Try unsetting stuff
Browse files
.github/workflows/nightly-evals.yml
CHANGED
@@ -36,10 +36,12 @@ jobs:
|
|
36 |
run: |
|
37 |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
38 |
git config --local user.name "github-actions[bot]"
|
|
|
|
|
39 |
git add results.json models.json languages.json
|
40 |
git commit -m "Update evaluation results [skip ci]" || echo "No changes to commit"
|
41 |
-
git push
|
42 |
-
|
43 |
- name: Upload to Hugging Face
|
44 |
env:
|
45 |
HUGGINGFACE_ACCESS_TOKEN: ${{ secrets.HUGGINGFACE_ACCESS_TOKEN }}
|
|
|
36 |
run: |
|
37 |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
38 |
git config --local user.name "github-actions[bot]"
|
39 |
+
git config --local --unset-all http.https://github.com/.extraheader
|
40 |
+
git remote set-url origin https://${GH_PAT}@github.com/datenlabor-bmz/ai-language-monitor.git
|
41 |
git add results.json models.json languages.json
|
42 |
git commit -m "Update evaluation results [skip ci]" || echo "No changes to commit"
|
43 |
+
git push origin HEAD:main
|
44 |
+
|
45 |
- name: Upload to Hugging Face
|
46 |
env:
|
47 |
HUGGINGFACE_ACCESS_TOKEN: ${{ secrets.HUGGINGFACE_ACCESS_TOKEN }}
|