-
Notifications
You must be signed in to change notification settings - Fork 1
63 lines (52 loc) · 1.75 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: 'Deploy Microsoft WWI packages to Databricks'
on:
workflow_dispatch:
inputs:
cluster_id:
description: 'Optionaly overwrite job cluster'
required: false
type: string
default: ''
env:
DATABRICKSCFG_PATH: .databrickscfg
jobs:
deploy:
name: "Build and Deploy Bundle to the Workspaces"
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: Create file and append content
run: |
echo -e "[dev]\nhost=${{ secrets.WORKSPACE_URL }}" > .databrickscfg
cat .databrickscfg
- name: Validation
run: |
ls -la
databricks auth env --host ${{ secrets.WORKSPACE_URL }}
databricks bundle validate -p dev
env:
#DATABRICKS_HOST: ${{ secrets.WORKSPACE_URL }}
DATABRICKS_CONFIG_FILE: .databrickscfg
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 with custom cluster
if: ${{ github.event.inputs.cluster_id != '' }}
run: |
databricks bundle deploy \
-c ${{ github.event.inputs.cluster_id }}
env:
DATABRICKS_TOKEN: ${{ secrets.SP_TOKEN }}
DATABRICKS_BUNDLE_ENV: dev
- name: Deploy with default cluster
if: ${{ github.event.inputs.cluster_id == '' }}
run: |
databricks bundle deploy
env:
DATABRICKS_TOKEN: ${{ secrets.SP_TOKEN }}
DATABRICKS_BUNDLE_ENV: dev