Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-01-2025 02:39 AM
Hi @IONA ,
you need to add a step into your CD pipeline to copy the notebook:
- checkout: self
- script: |
cp path/to/notebook_in_repo/notebook.py .bundle/notebook.py
displayName: 'Copy notebook into bundle'
- script: |
databricks bundle deploy
displayName: 'Deploy Databricks Bundle'
witin DAB yaml:
resources:
jobs:
my_job:
tasks:
- task_key: run_notebook
notebook_task:
notebook_path: ./notebook.py