Press/Jenkinsfile

16 lines
303 B
Plaintext
Raw Normal View History

2021-07-07 15:05:57 +02:00
pipeline {
agent any
stages {
stage('Build') {
when {
branch 'main'
}
steps {
sh '''cd src
npm install
npx presskit build --output ../out --pretty-links --collapse-menu
cp ../out/** /var/www/press'''
}
}
}
}