Skip to content

Commit

Permalink
Fix skipped signing (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
calebkiage authored Dec 11, 2023
1 parent 39e6c1d commit 58155a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .azure-pipelines/release-cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 58155a8

Please sign in to comment.