Fix condition in Release Pipeline

presentation
Ulrich Huber 7 years ago
parent e9d05861d1
commit e1e2726768
  1. 2
      azure-pipelines/release.yml

@ -46,7 +46,7 @@ stages:
name: 'VersionRelease'
displayName: 'Set Version Information for Release'
workingDirectory: ./build
condition: not(succeeded('VersionNightly'))
condition: and(ne(variables['Build.Reason'], 'Schedule'), ne(variables['runForRelease'], False)) # Run for non-scheduled (release)
- stage: Release
jobs:
- job: 'Linux'

Loading…
Cancel
Save