diff options
author | 2018-11-16 13:46:50 +0000 | |
---|---|---|
committer | 2018-11-16 13:46:50 +0000 | |
commit | b04abeb09eb287db541e6ef696f81819832428ac (patch) | |
tree | 5a66e403615aa25a0c06ce4b55ffad01fa49ecb8 | |
parent | Azure: It's amusing that bash is the problem today (diff) |
Azure: Switch to shell script task instead of calling bash ourselves
-rw-r--r-- | azure-pipelines.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 534742f4f..b9fe8beb0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -50,5 +50,8 @@ jobs: dockerRegistryEndpoint: 'DockerHub' command: 'login' - - bash: bash scripts/deploy-azure.sh + - task: ShellScript@2 displayName: 'Build and deploy containers' + + inputs: + scriptPath: scripts/deploy-azure.sh |