NguyenS commited on
Commit
d5ac859
1 Parent(s): 31b5873

Create main.yml

Browse files
Files changed (1) hide show
  1. .github/workflows/main.yml +47 -0
.github/workflows/main.yml ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+
34
+ - name: Push to hub
35
+ env:
36
+ HF: ${{secrets.HF}}
37
+ run: git push --force add space https://huggingface.co/spaces/Nguyens/mlops-demo main
38
+
39
+ # # Runs a single command using the runners shell
40
+ # - name: Run a one-line script
41
+ # run: echo Hello, world!
42
+
43
+ # # Runs a set of commands using the runners shell
44
+ # - name: Run a multi-line script
45
+ # run: |
46
+ # echo Add other actions to build,
47
+ # echo test, and deploy your project.