rt-sim-training-client/Jenkinsfile-prd
2019-07-02 16:29:52 +08:00

27 lines
450 B
Plaintext

pipeline {
agent {
node {
label 'master'
}
}
stages {
stage('Package') {
tools {
nodejs 'nodejs-10'
}
steps {
sh 'npm install'
sh 'npm run build'
}
}
stage('Publish') {
steps {
sh 'cp -rf ./dist/* /usr/local/joylink/jlclient'
}
}
}
}