Skip to content

Commit 298437e

Browse files
committed
fixed bug on or condtion preventing pipeline from running
1 parent 9a80e07 commit 298437e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.azure-pipelines/templates/secure-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ steps:
99
secureFile: 'local.properties'
1010
retryCount: '5'
1111

12-
- ${{ if or(eq(parameters.stageID, 'build'), eq(parameters.stageID, 'release') }}:
12+
- ${{ if or(eq(parameters.stageID, 'build'), eq(parameters.stageID, 'release')) }}:
1313
- task: DownloadSecureFile@1
1414
inputs:
1515
secureFile: 'secring.gpg'

0 commit comments

Comments
 (0)