Skip to content

Commit

Permalink
moving build succeeded condition to the job level
Browse files Browse the repository at this point in the history
  • Loading branch information
mkieres committed Oct 22, 2022
1 parent 81dd8b8 commit d201288
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipelines/mobile_app/deploy-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ stages:

- stage: CdPublishAndroid
dependsOn: CdBuildAndroid
condition: in(stageDependencies.CdBuildAndroid.BuildAndroid.result, 'Succeeded')
jobs:
- job: PublishAndroid
condition: eq(stageDependencies.CdBuildAndroid.BuildAndroid.result, 'Succeeded')
timeoutInMinutes: 5
pool:
vmImage: "macOS-12"
Expand Down Expand Up @@ -217,9 +217,9 @@ stages:

- stage: CdPublishiOS
dependsOn: CdBuildiOS
condition: in(stageDependencies.CdBuildiOS.BuildiOS.result, 'Succeeded')
jobs:
- job: PublishiOS
condition: eq(stageDependencies.CdBuildiOS.BuildiOS.result, 'Succeeded')
timeoutInMinutes: 20
pool:
vmImage: "macOS-12"
Expand Down

0 comments on commit d201288

Please sign in to comment.