Skip to content
Snippets Groups Projects
Verified Commit 758c1678 authored by Joe Donofry's avatar Joe Donofry
Browse files

Change release condition

parent d8842b1e
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ steps:
ARTIFACT_STAGING_DIRECTORY: $(Build.ArtifactStagingDirectory))
# delete the release if it already exists to avoid an error
- task: GitHubRelease@0
condition: and(succeeded(), eq(variables['buildSuccess'], 'true') )
condition: succeeded(), eq(variables['buildSuccess'], 'true')
continueOnError: true
inputs:
gitHubConnection: nheko-reborn-pipeline
......@@ -55,7 +55,7 @@ steps:
#isPreRelease: true # Optional
#addChangeLog: true # Optional
- task: GitHubRelease@0
condition: and(succeeded(), eq(variables['buildSuccess'], 'true') )
condition: eq(variables['buildSuccess'], 'true')
continueOnError: true
inputs:
gitHubConnection: nheko-reborn-pipeline
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment