Skip to content

Commit e4930eb

Browse files
committedMay 15, 2021
Added scripts for release
Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com>
1 parent 9664c1b commit e4930eb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
 

‎.azure-pipelines/pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,6 @@ stages:
191191
- task: NodeTool@0
192192
displayName: "Installing NodeJS"
193193
inputs:
194-
versionSpec: '6.x'
194+
versionSpec: '>=8.6'
195195
- script: scripts/build-docs.sh
196196
displayName: "Building documentation"

‎scripts/build-docs.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#!/bin/bash
22

33
build_docs() {
4-
cd docs; yarn install
5-
cd docs; npm install -D vuepress
6-
cd docs; yarn build
4+
cd docs; yarn install && \
5+
yarn add -D vuepress && \
6+
yarn build
77
}
88

99
build_docs

0 commit comments

Comments
 (0)