TinyLifeWeb/Jenkinsfile
2021-08-04 06:51:12 +02:00

15 lines
247 B
Groovy

pipeline {
agent any
stages {
stage('Document') {
when {
branch 'main'
}
steps {
sh 'dotnet tool restore'
sh 'dotnet cake'
sh 'cp _site/** /var/www/tinylifedocs/ -r'
}
}
}
}