From f0fe865798627c8b1c6b8479be6c60cb42ef28cf Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Thu, 11 Jul 2019 09:15:14 +0200 Subject: [PATCH] Update azure-pipelines-release.yml for Azure Pipelines --- azure-pipelines-release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/azure-pipelines-release.yml b/azure-pipelines-release.yml index 0a6618718a2c..77091315c6a3 100644 --- a/azure-pipelines-release.yml +++ b/azure-pipelines-release.yml @@ -19,7 +19,6 @@ stages: - stage: 'Validate' jobs: - job: 'VersionValidate' - condition: startsWith(variables['Build.SourceBranch'], 'refs/tags') pool: vmImage: 'ubuntu-latest' steps: @@ -54,7 +53,7 @@ stages: - stage: 'Build' jobs: - job: 'ReleasePython' - condition: and(startsWith(variables['Build.SourceBranch'], 'refs/tags'), succeeded('VersionValidate')) + condition: and(startsWith(variables['Build.SourceBranch'], 'refs/tags'), succeeded()) dependsOn: - 'VersionValidate' pool: @@ -75,7 +74,7 @@ stages: twine upload dist/* --skip-existing displayName: 'Upload pypi' - job: 'ReleaseDocker' - condition: and(startsWith(variables['Build.SourceBranch'], 'refs/tags'), succeeded('VersionValidate')) + condition: and(startsWith(variables['Build.SourceBranch'], 'refs/tags'), succeeded()) dependsOn: - 'VersionValidate' timeoutInMinutes: 240 @@ -127,7 +126,7 @@ stages: - stage: 'Publish' jobs: - job: 'ReleaseHassio' - condition: and(startsWith(variables['Build.SourceBranch'], 'refs/tags'), succeeded('ReleaseDocker')) + condition: and(startsWith(variables['Build.SourceBranch'], 'refs/tags'), succeeded()) dependsOn: - 'ReleaseDocker' pool: