Spaces:
Running
Running
Shlomo Kashani
commited on
Update main.yml
Browse files- .github/workflows/main.yml +18 -5
.github/workflows/main.yml
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
name: Sync to Hugging Face
|
|
|
2 |
on:
|
3 |
push:
|
4 |
branches: [main]
|
5 |
-
#
|
6 |
-
workflow_dispatch:
|
7 |
|
8 |
jobs:
|
9 |
sync-to-hub:
|
@@ -13,7 +13,20 @@ jobs:
|
|
13 |
with:
|
14 |
fetch-depth: 0
|
15 |
lfs: true
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
env:
|
18 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
19 |
-
run: git pull && git pull push https://BoltzmannEntropy:[email protected]/spaces/BoltzmannEntropy/vlms main
|
|
|
1 |
+
name: Sync to Hugging Face Hub
|
2 |
+
|
3 |
on:
|
4 |
push:
|
5 |
branches: [main]
|
6 |
+
workflow_dispatch: # To trigger the workflow manually from the Actions tab
|
|
|
7 |
|
8 |
jobs:
|
9 |
sync-to-hub:
|
|
|
13 |
with:
|
14 |
fetch-depth: 0
|
15 |
lfs: true
|
16 |
+
|
17 |
+
- name: Set up git configuration
|
18 |
+
run: |
|
19 |
+
git config user.name "GitHub Actions"
|
20 |
+
git config user.email "[email protected]"
|
21 |
+
|
22 |
+
- name: Pull from the Hugging Face hub
|
23 |
+
run: |
|
24 |
+
git pull https://BoltzmannEntropy:[email protected]/spaces/BoltzmannEntropy/vlms main
|
25 |
+
env:
|
26 |
+
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
27 |
+
|
28 |
+
- name: Push changes to the Hugging Face hub
|
29 |
+
run: |
|
30 |
+
git push https://BoltzmannEntropy:[email protected]/spaces/BoltzmannEntropy/vlms main
|
31 |
env:
|
32 |
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
|