Spaces:
Sleeping
Sleeping
Filip
commited on
Commit
·
cbd4e93
1
Parent(s):
1008657
update
Browse files
.github/workflows/sync-to-hf-space.yml
CHANGED
@@ -13,11 +13,17 @@ jobs:
|
|
13 |
- name: Checkout repository
|
14 |
uses: actions/checkout@v3
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
- name: Sync with Hugging Face Space
|
17 |
env:
|
18 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
19 |
run: |
|
20 |
huggingface-cli repo sync-to-space \
|
21 |
-
|
22 |
-
|
23 |
-
|
|
|
13 |
- name: Checkout repository
|
14 |
uses: actions/checkout@v3
|
15 |
|
16 |
+
- name: Install Hugging Face Hub
|
17 |
+
run: |
|
18 |
+
python3 -m pip install --upgrade pip
|
19 |
+
python3 -m pip install huggingface_hub
|
20 |
+
echo "::add-path::$(python3 -m site --user-base)/bin"
|
21 |
+
|
22 |
- name: Sync with Hugging Face Space
|
23 |
env:
|
24 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
25 |
run: |
|
26 |
huggingface-cli repo sync-to-space \
|
27 |
+
--repo-id forestav/llm-as-a-judge \
|
28 |
+
--local-path . \
|
29 |
+
--commit-message "Auto-sync from GitHub"
|