Press/Jenkinsfile

17 lines
343 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
2021-07-07 15:13:36 +02:00
npx presskit build --output ../out --pretty-links --collapse-menu'''
sh '''rm -r /var/www/press/*
2021-07-07 15:05:57 +02:00
cp ../out/** /var/www/press'''
}
}
}
}