mahimairaja commited on
Commit
8115a8a
·
1 Parent(s): 808c8a4

feat: added github workflow sot push

Browse files
.github/workflows/check-file.yml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Check file size
2
+ on:
3
+ pull_request:
4
+ branches: [main]
5
+
6
+ workflow_dispatch:
7
+
8
+ jobs:
9
+ check-file-size:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Check large files
13
+ uses: ActionsDesk/[email protected]
14
+ with:
15
+ filesizelimit: 10485760 # this is 10MB so we can sync to HF Spaces
.github/workflows/sync-to-hub.yml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ name: Sync to Hugging Face hub
2
+ on:
3
+ push:
4
+ branches: [main]
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: git push https://mahimairaja:[email protected]/spaces/mahimairaja/geo-spatial-multi-vector-search main