Spaces:
Runtime error
Runtime error
add workflow to push to huggingface
Browse files
.github/workflows/push-to-huggingface.yaml
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: Push to Huggingface
|
2 |
+
on:
|
3 |
+
push:
|
4 |
+
branches: [main]
|
5 |
+
|
6 |
+
jobs:
|
7 |
+
push-to-huggingface:
|
8 |
+
runs-on: ubuntu-latest
|
9 |
+
steps:
|
10 |
+
- uses: actions/checkout@v3
|
11 |
+
with:
|
12 |
+
fetch-depth: 0
|
13 |
+
lfs: true
|
14 |
+
- name: Push to Huggingface
|
15 |
+
env:
|
16 |
+
HF_TOKEN: ${{ secrets.HF_TOKEN }}
|
17 |
+
run: git push https://dikarel:$HF_TOKEN@huggingface.co/spaces/dikarel/nice-outfit main
|