1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
parameters:
ServiceDirectory: ''
Condition: 'succeededOrFailed()'
steps:
# this will never call save Save-Package-Properties directly as ServiceDirectory is not present
# it will however set an indicator for whether or not we're in a nightly build though.
# we will handle the Save-Package-Properties call ourselves
- template: /eng/common/pipelines/templates/steps/daily-dev-build-variable.yml
- pwsh: |
python -m pip install "tools/azure-sdk-tools[build]"
sdk_set_dev_version "*" --build-id="$(Build.BuildNumber)"
displayName: "Update package versions for dev build"
condition: and(succeededOrFailed(), eq(variables['SetDevVersion'],'true'), ${{ parameters.Condition }})
|