25 lines
No EOL
356 B
Groovy
25 lines
No EOL
356 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Pull') {
|
|
when {
|
|
branch 'master'
|
|
}
|
|
steps {
|
|
sh '''cd /var/www/ellpeck
|
|
git pull'''
|
|
}
|
|
}
|
|
stage('Node') {
|
|
when {
|
|
branch 'master'
|
|
}
|
|
steps {
|
|
sh '''cd /var/www/ellpeck/node
|
|
node blog.js
|
|
node sitemap.js
|
|
node rss.js'''
|
|
}
|
|
}
|
|
}
|
|
} |