I'm setting up an azure pipeline using YAML with some jobs, I have one job that depends on multiple other jobs.
jobs:
job: A ...
job: B ...
job: C
dependsOn: A, B
running this code gave me an error 'Job Artifact depends on unknown job A,B.'
I corrected the sysntax
- job: C
dependsOn:
- A
- B
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With