NguyenS commited on
Commit
c76047e
1 Parent(s): 5c80361

Update main.yml

Browse files
Files changed (1) hide show
  1. .github/workflows/main.yml +10 -32
.github/workflows/main.yml CHANGED
@@ -1,45 +1,23 @@
1
- # This is a basic workflow to help you get started with Actions
2
-
3
- name: CI
4
-
5
- # Controls when the workflow will run
6
  on:
7
- # Triggers the workflow on push or pull request events but only for the "main" branch
8
  push:
9
- branches: [ "main" ]
10
- # pull_request:
11
- # branches: [ "main" ]
12
 
13
- # Allows you to run this workflow manually from the Actions tab
14
  workflow_dispatch:
15
 
16
- # A workflow run is made up of one or more jobs that can run sequentially or in parallel
17
  jobs:
18
- # This workflow contains a single job called "build"
19
- build:
20
- # The type of runner that the job will run on
21
  runs-on: ubuntu-latest
22
-
23
- # Steps represent a sequence of tasks that will be executed as part of the job
24
  steps:
25
- # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26
  - uses: actions/checkout@v3
27
- with:
28
  fetch-depth: 0
29
- - name: Add remote
30
  env:
31
- HF: ${{secrets.HF}}
32
- run: git remote add space https://huggingface.co/spaces/Nguyens/mlops-demo
33
  - name: Push to hub
34
  env:
35
- HF: ${{secrets.HF}}
36
- run: git push --force add space https://huggingface.co/spaces/Nguyens/mlops-demo main
37
- # # Runs a single command using the runners shell
38
- # - name: Run a one-line script
39
- # run: echo Hello, world!
40
-
41
- # # Runs a set of commands using the runners shell
42
- # - name: Run a multi-line script
43
- # run: |
44
- # echo Add other actions to build,
45
- # echo test, and deploy your project
 
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@v3
14
+ with:
15
  fetch-depth: 0
16
+ - name: Add remote
17
  env:
18
+ HF: ${{ secrets.HF }}
19
+ run: git remote add space https://huggingface.co/spaces/Nguyens/mlops-demo
20
  - name: Push to hub
21
  env:
22
+ HF: ${{ secrets.HF }}
23
+ run: git push --force https://huggingface.co/spaces/Nguyens/mlops-demo main