TinyLifeWeb/Jenkinsfile
2023-04-11 14:53:13 +02:00

30 lines
601 B
Groovy

pipeline {
agent { label 'web' }
stages {
stage('Site') {
when {
branch 'main'
}
steps {
sh '''cd web
bundle
bundle exec jekyll build'''
sh 'rm -rf /var/www/tinylifegame/*'
sh 'cp -r web/_site/. /var/www/tinylifegame/'
}
}
stage('Docs') {
when {
branch 'main'
}
steps {
sh '''cd docs
dotnet tool restore
dotnet docfx'''
sh 'rm -rf /var/www/tinylifedocs/*'
sh 'cp -r docs/_site/. /var/www/tinylifedocs/'
}
}
}
}