From a6e59ea45e4bcdd11c17ed3ee059935bdcce61f9 Mon Sep 17 00:00:00 2001 From: Nikolaj Bjorner Date: Mon, 16 Dec 2024 04:41:29 +0100 Subject: [PATCH] fix build flags for release.yaml Signed-off-by: Nikolaj Bjorner --- scripts/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release.yml b/scripts/release.yml index fde5fcf7d..ce27ded96 100644 --- a/scripts/release.yml +++ b/scripts/release.yml @@ -581,7 +581,7 @@ stages: - job: NuGetPublish - condition: eq(1,1) + condition: eq(0,1) displayName: "Publish to NuGet.org" steps: - task: DownloadPipelineArtifact@2 @@ -602,7 +602,7 @@ stages: # Enable on release: - job: PyPIPublish - condition: eq(0,1) + condition: eq(1,1) displayName: "Publish to PyPI" pool: vmImage: "ubuntu-latest"