Skip to content

Commit 58155a8

Browse files
authored
Fix skipped signing (#408)
1 parent 39e6c1d commit 58155a8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.azure-pipelines/release-cli.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ stages:
439439
inputs:
440440
patterns: build-output-$(rid)/**/*
441441
path: $(WORKING_DIR)
442-
condition: and(false, succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'true'))
442+
condition: and(succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'true'))
443443

444444
- task: PowerShell@2
445445
inputs:
@@ -477,7 +477,7 @@ stages:
477477
debugPreference: '$(OUTPUT_PREFERENCE)'
478478
informationPreference: '$(OUTPUT_PREFERENCE)'
479479
displayName: Compute zip name
480-
condition: and(false, succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'true'))
480+
condition: and(succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'true'))
481481

482482
- task: PowerShell@2
483483
inputs:
@@ -496,7 +496,7 @@ stages:
496496
debugPreference: '$(OUTPUT_PREFERENCE)'
497497
informationPreference: '$(OUTPUT_PREFERENCE)'
498498
displayName: Extract archive
499-
condition: and(false, succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'True'))
499+
condition: and(succeeded(), eq(variables['SHOULD_SIGN'], 'True'), ne(variables['IS_NUGET'], 'True'))
500500

501501
- template: templates/prepare-unsigned-executable-darwin.yaml
502502
parameters:

0 commit comments

Comments
 (0)