Alphin Jain commited on
Commit
b17f3de
·
1 Parent(s): 334c1a6

Updated modules

Browse files
Files changed (1) hide show
  1. .github/workflows/deploy-to-hf.yml +21 -0
.github/workflows/deploy-to-hf.yml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Sync to Hugging Face hub
2
+ on:
3
+ push:
4
+ branches: [new2]
5
+
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ sync-to-hub:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ with:
14
+ fetch-depth: 0
15
+ lfs: true
16
+ - name: Push to hub
17
+ env:
18
+ HF_TOKEN: ${{ secrets.HF_TOKEN }}
19
+ run: |
20
+ git remote add hf https://AlphJain:$HF_TOKEN@huggingface.co/spaces/AlphJain/aya-summarization
21
+ git push hf HEAD:main --force