We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d0b68a commit df4e9efCopy full SHA for df4e9ef
azure-pipelines.yml
@@ -8,7 +8,23 @@ steps:
8
inputs:
9
versionSpec: '5.x'
10
11
-- task: gitversion/execute@0
+- task: gitversion/execute@0
12
+
13
+- task: Bash@3
14
+ displayName: Update version number in react-spaces package.json to $(GitVersion.SemVer)
15
+ inputs:
16
+ targetType: 'inline'
17
+ script: sed -i "s/0.0.1/$GITVERSIONNUMBER/g" package.json
18
+ env:
19
+ GITVERSIONNUMBER: $(GitVersion.SemVer)
20
21
22
+ displayName: Update version number in react-spaces-storybook package.json to $(GitVersion.SemVer)
23
24
25
+ script: sed -i "s/0.0.1/$GITVERSIONNUMBER/g" .storybook/package.json
26
27
28
29
- task: NodeTool@0
30
0 commit comments