Remove root build step when deploying examples

This commit is contained in:
Franck Royer 2022-05-02 16:26:06 +10:00
parent a94351f265
commit 3b15a32f12
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
1 changed files with 0 additions and 1 deletions

View File

@ -58,7 +58,6 @@ def buildExample(example=STAGE_NAME) {
def dest = "${WORKSPACE}/build/docs/examples/${example}"
dir("examples/${example}") {
sh 'npm install'
sh 'npm run build'
sh "mkdir -p ${dest}"
sh "cp -r build/. ${dest}"
}