I am deploying an asset bundle using an azure pipeline.
I use
# Databricks Bundle Validate
- bash: |
databricks bundle validate -t $(BUNDLE_TARGET)
displayName: 'Validate Asset Bundle'
# Databricks Bundle Deploy
- bash: |
databricks bundle deploy -t $(BUNDLE_TARGET)
displayName: 'Deploy Asset Bundle'
The bundle is getting deployed to the same root path everytime.
Everytime I run my pipline I get a duplicate of the jobs in my workflows.
This issue just started happening today, yesterday I deployed many times with no duplicates. Please assist.
Thank you