Esteban Rucán Carrasco commited on
Commit
60ddc52
1 Parent(s): a3b7c52

Create main.yml

Browse files
Files changed (1) hide show
  1. .github/workflows/main.yml +23 -0
.github/workflows/main.yml ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Sync to Hugging Face Hub
2
+ on:
3
+ push:
4
+ branches: [main]
5
+ # to run this workflow manually from the Actions tab
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ sync-to-hub:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ with:
14
+ fetch-depth: 0
15
+ - name: Add remote
16
+ env:
17
+ HF: ${{ secrets.HF }}
18
+ run: git remote add space https://estebanrucan:$HF@huggingface.co/spaces/estebanrucan/demo2
19
+ - name: Push to hub
20
+ env:
21
+ HF: ${{ secrets.HF }}
22
+ run: git push --force https://estebanrucan:$HF@huggingface.co/spaces/estebanrucan/demo2 main
23
+