OmarSamehSaid commited on
Commit
0cb7646
·
unverified ·
1 Parent(s): 362dee6

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 - Obsolete to avoid app disruptions
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_TOKEN: ${{ secrets.HG }}
19
+ run: git remote add space https://OmarSamehSaid:$HG@huggingface.co/spaces/OmarSamehSaid/Text-Summerization
20
+ - name: Push to hub
21
+ env:
22
+ HF_TOKEN: ${{ secrets.HG }}
23
+ run: git push --force https://OmarSamehSaid:$HG@huggingface.co/spaces/OmarSamehSaid/Text-Summerization main