TinyLifeWeb/Jenkinsfile
2021-08-04 05:42:02 +02:00

15 lines
250 B
Groovy

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