ci(azure-pipelines): fix param splices

This commit is contained in:
Sarah Vaupel 2025-02-06 18:08:28 +01:00
parent 1a3c18a8bd
commit f969c23bac

View File

@ -50,15 +50,15 @@ jobs:
condition: eq(variables.useCachedDependencies, true) condition: eq(variables.useCachedDependencies, true)
continueOnError: true continueOnError: true
inputs: inputs:
artifactName: '${{serviceName}}-dependencies' artifactName: '${{parameters.serviceName}}-dependencies'
source: ${{ dependenciesSource }} source: ${{parameters.dependenciesSource}}
project: 'Fahrerausbildung' # TODO: hardcoded for now, could not figure out which predefined variable to use project: 'Fahrerausbildung' # TODO: hardcoded for now, could not figure out which predefined variable to use
pipeline: $(System.DefinitionId) pipeline: $(System.DefinitionId)
buildVersionToDownload: '${{dependenciesVersion}}' buildVersionToDownload: '${{parameters.dependenciesVersion}}'
# tags: '${{dependenciesArtifacts}}' # tags: '${{dependenciesArtifacts}}'
allowPartiallySucceededBuilds: true allowPartiallySucceededBuilds: true
allowFailedBuilds: true allowFailedBuilds: true
patterns: '${{dependenciesArtifacts}}' patterns: '${{parameters.dependenciesArtifacts}}'
targetPath: '$(Build.Repository.LocalPath)' targetPath: '$(Build.Repository.LocalPath)'
# Compile dependencies # Compile dependencies