Skip to content

Commit 52d8638

Browse files
mbwhitejt-nti
authored andcommitted
Move azure variable to env variable
Signed-off-by: Matthew B White <whitemat@uk.ibm.com>
1 parent b1991a6 commit 52d8638

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
steps:
22
- script: |
33
set -ev
4-
export RELEASE_VERSION=${VERSION}-unstable.$(Date:yyyyMMdd)
4+
export RELEASE_VERSION=${VERSION}.dev.${DATE_STAMP}
55
find . \( -wholename "./docs/package.json" -or -wholename "./apis/**/package.json" -or -wholename "./libraries/**/package.json" -or -wholename "./test/**/package.json" \) -exec node ci/updatePackageJson.js {} \;
66
node common/scripts/install-run-rush.js update
77
name: UpdateVersionNightlyDrivers
8-
displayName: 'Build data'
8+
displayName: 'Update Version for dev drivers'
99
condition: and(succeeded(), eq(variables['Build.Reason'], 'Schedule')) # only run on the scheduled builds
1010
env:
1111
COMMIT_ID: $(Build.SourceVersion)
12-
VERSION: $(VERSION)
12+
VERSION: $(VERSION)
13+
DATE_STAMP: $(Date:yyyyMMdd)

0 commit comments

Comments
 (0)