Spaces:
Sleeping
Sleeping
Commit ·
cca72f3
1
Parent(s): 77349d1
HF
Browse files
.github/workflows/deploy-to-hf.yml
CHANGED
|
@@ -16,10 +16,10 @@ jobs:
|
|
| 16 |
env:
|
| 17 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
| 18 |
run: |
|
| 19 |
-
echo "HF_TOKEN is: ${HF_TOKEN}" # DEBUG: Remove this after confirming token is set
|
| 20 |
git config user.name "Karthik80-hub"
|
| 21 |
git config user.email "chunchukarthik200@gmail.com"
|
| 22 |
-
git remote add hf https://huggingface
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
|
|
|
|
|
| 16 |
env:
|
| 17 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
| 18 |
run: |
|
|
|
|
| 19 |
git config user.name "Karthik80-hub"
|
| 20 |
git config user.email "chunchukarthik200@gmail.com"
|
| 21 |
+
git remote add hf https://huggingface.co/spaces/chunchu-08/LLM-Comparison-Hub
|
| 22 |
+
echo "#!/bin/sh" > askpass.sh
|
| 23 |
+
echo "echo \$HF_TOKEN" >> askpass.sh
|
| 24 |
+
chmod +x askpass.sh
|
| 25 |
+
GIT_ASKPASS=$PWD/askpass.sh git push --force hf main
|