-
Notifications
You must be signed in to change notification settings - Fork 1
46 lines (38 loc) · 1.17 KB
/
cicd.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
40
41
42
43
44
45
name: 'Build and Deploy to Databricks'
on:
workflow_dispatch:
inputs:
projectFolders:
description: 'List of folders to run'
required: true
type: choice
options:
- raw
- 02_data_product
jobs:
deploy:
name: "Build and Deploy Bundle"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip install poetry
# Download the Databricks CLI.
# See https://github.com/databricks/setup-cli
- uses: databricks/setup-cli@main
- name: Validation
run: |
pwd
ls -la
databricks bundle validate
working-directory: ./${{ github.event.inputs.projectFolders }}/
env:
DATABRICKS_TOKEN: ${{ secrets.SP_TOKEN }}
DATABRICKS_BUNDLE_ENV: dev
# Deploy the bundle to the "qa" target as defined
# in the bundle's settings file.
- name: Deploy
run: databricks bundle deploy -c 1011-082929-h6d1tk5
working-directory: ./${{ github.event.inputs.projectFolders }}/
env:
DATABRICKS_TOKEN: ${{ secrets.SP_TOKEN }}
DATABRICKS_BUNDLE_ENV: dev