From 58155a8980a3fc9a48c2ff251d7733635ec8b7e2 Mon Sep 17 00:00:00 2001 From: Caleb Kiage <747955+calebkiage@users.noreply.github.com> Date: Tue, 12 Dec 2023 02:37:37 +0300 Subject: [PATCH] Fix skipped signing (#408) --- .azure-pipelines/release-cli.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.azure-pipelines/release-cli.yaml b/.azure-pipelines/release-cli.yaml index 3423b72647..1c0361b91a 100644 --- a/.azure-pipelines/release-cli.yaml +++ b/.azure-pipelines/release-cli.yaml @@ -439,7 +439,7 @@ stages: inputs: patterns: build-output-$(rid)/**/* path: $(WORKING_DIR) - condition: and(false, succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'true')) + condition: and(succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'true')) - task: PowerShell@2 inputs: @@ -477,7 +477,7 @@ stages: debugPreference: '$(OUTPUT_PREFERENCE)' informationPreference: '$(OUTPUT_PREFERENCE)' displayName: Compute zip name - condition: and(false, succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'true')) + condition: and(succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'true')) - task: PowerShell@2 inputs: @@ -496,7 +496,7 @@ stages: debugPreference: '$(OUTPUT_PREFERENCE)' informationPreference: '$(OUTPUT_PREFERENCE)' displayName: Extract archive - condition: and(false, succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'True')) + condition: and(succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'True')) - template: templates/prepare-unsigned-executable-darwin.yaml parameters: