Thiago Hersan commited on
Commit
fb2e6cc
β€’
1 Parent(s): 5c641bc

add action to push hf spaces

Browse files
Files changed (1) hide show
  1. .github/workflows/deploy-hf.yml +25 -0
.github/workflows/deploy-hf.yml ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Deploy to Hugging Face spaces
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+
8
+ jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - name: Checkout Dev Repo
14
+ uses: actions/checkout@v3
15
+ with:
16
+ fetch-depth: 0
17
+ lfs: true
18
+
19
+ - name: Push to HF
20
+ env:
21
+ HFTOKEN: ${{ secrets.HFTOKEN }}
22
+
23
+ run: |
24
+ git remote add hf https://thiagohersan:$HFTOKEN@huggingface.co/spaces/IDMNYU/9103H-2024F-whisper-base-en-gradio
25
+ git push hf main