-
Notifications
You must be signed in to change notification settings - Fork 198
39 lines (35 loc) · 1.17 KB
/
ci_cd_ml_pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: CD/CD for the ml-pipeline that builds all the pipeline modules and pushes them to the private PyPI registry. From where Airflow will install the latest versions and use them in the next run.
on:
push:
paths-ignore:
- 'app-api/'
- 'app-frontend/'
- '**/*.yml'
- '**/*.md'
branches: [ "main" ]
env:
CLOUDSDK_CORE_PROJECT: '${{ vars.CLOUDSDK_CORE_PROJECT }}'
USER: '${{ vars.USER }}'
INSTANCE_NAME: '${{ vars.ML_PIPELINE_INSTANCE_NAME }}'
ZONE: '${{ vars.ZONE }}'
jobs:
ci_cd:
runs-on: ubuntu-latest
steps:
- uses: 'actions/checkout@v3'
- id: 'auth'
uses: 'google-github-actions/auth@v0'
with:
credentials_json: '${{ secrets.GCP_CREDENTIALS }}'
- id: 'compute-ssh'
uses: 'google-github-actions/ssh-compute@v0'
with:
project_id: '${{ env.CLOUDSDK_CORE_PROJECT }}'
user: '${{ env.USER }}'
instance_name: '${{ env.INSTANCE_NAME }}'
zone: '${{ env.ZONE }}'
ssh_private_key: '${{ secrets.GCP_SSH_PRIVATE_KEY }}'
command: >
cd ~/energy-forecasting &&
git pull &&
sh deploy/ml-pipeline.sh