diff --git a/azure-pipelines.yaml b/azure-pipelines.yaml index 75a8f78c8..f99f113cb 100644 --- a/azure-pipelines.yaml +++ b/azure-pipelines.yaml @@ -6,9 +6,9 @@ jobs: image: 'devfra.azurecr.io/de.fraport.trusted/ubuntu:22.04' endpoint: devfra steps: - - displayName: 'Run a one-line script' - script: echo Hello, world! - - displayName: 'Run a multi-line script' - script: | + - script: echo Hello, world! + displayName: 'Run a one-line script' + - script: | echo Add other tasks to build, test, and deploy your project. - echo See https://aka.ms/yaml \ No newline at end of file + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' \ No newline at end of file