From 509ebeb27dfef0bf7cdd3082a278de7a16b30814 Mon Sep 17 00:00:00 2001 From: fabienfl-orc Date: Tue, 9 Jun 2020 11:58:30 +0200 Subject: [PATCH] ci: azure: make publish optional --- azure-pipelines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index f2eda5d1..96a99277 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -1,6 +1,11 @@ trigger: - master +parameters: +- name: PublishRelease + type: boolean + default: true + stages: - stage: Build jobs: @@ -13,6 +18,7 @@ stages: arch: "x86" - stage: Publish + condition: ${{parameters.PublishRelease}} jobs: - job: RetrieveAndPublish steps: