mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-26 04:58:49 +03:00
Change release condition
This commit is contained in:
parent
d8842b1e13
commit
758c1678f7
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue