azure pipeline databricks bundle deploy duplicating jobs

TheManOfSteele
New Contributor III

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.
 
TheManOfSteele_0-1723232334622.png

 

 This issue just started happening today, yesterday I deployed many times with no duplicates. Please assist.
 
Thank you