ci(azure-pipelines): always run dependency build when not on update branch

This commit is contained in:
Sarah Vaupel 2025-02-06 18:50:47 +01:00
parent 517144c0cf
commit 17c7ed89c5

View File

@ -34,6 +34,11 @@ jobs:
- job: SetupDependencies_${{parameters.serviceName}}
displayName: Install ${{parameters.serviceName}} dependencies
dependsOn: SetupImage_${{parameters.serviceName}}
condition: always() # TODO: only succeeded and skipped
${{ if startsWith(variables['Build.SourceBranch'], 'refs/tags/') }}:
condition: succeeded()
${{ else }}:
condition: always()
pool: '${{parameters.dependenciesBuildPool}}'
container:
# TODO: do not use latest on update branches