Web/Jenkinsfile
Ell 33db928a7c
All checks were successful
Web/pipeline/head This commit looks good
some rss feed improvements
2021-03-17 03:30:30 +01:00

25 lines
408 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
npm install
node blog.js
node rss.js'''
}
}
}
}