K Sudhakar Reddy commited on
Commit
f75ef1f
·
unverified ·
1 Parent(s): 22c457b

Update main.yml

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