Commit
·
6635049
1
Parent(s):
09ce61a
Updated sync_to_hf github action yml with corrected Hugging Face space reference
Browse files
.github/workflows/sync_to_hf.yml
CHANGED
@@ -10,7 +10,7 @@ jobs:
|
|
10 |
sync-to-hub:
|
11 |
runs-on: ubuntu-latest
|
12 |
steps:
|
13 |
-
- uses: actions/checkout@
|
14 |
with:
|
15 |
fetch-depth: 0
|
16 |
lfs: true
|
@@ -19,4 +19,4 @@ jobs:
|
|
19 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
20 |
HF_USERNAME: ${{ secrets.HF_USERNAME }}
|
21 |
HF_REPO_ID: ${{ secrets.HF_REPO_ID }}
|
22 |
-
run: git push https://$HF_USERNAME:[email protected]/$HF_USERNAME/$HF_REPO_ID main
|
|
|
10 |
sync-to-hub:
|
11 |
runs-on: ubuntu-latest
|
12 |
steps:
|
13 |
+
- uses: actions/checkout@v4
|
14 |
with:
|
15 |
fetch-depth: 0
|
16 |
lfs: true
|
|
|
19 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
20 |
HF_USERNAME: ${{ secrets.HF_USERNAME }}
|
21 |
HF_REPO_ID: ${{ secrets.HF_REPO_ID }}
|
22 |
+
run: git push https://$HF_USERNAME:[email protected]/spaces/$HF_USERNAME/$HF_REPO_ID main
|