mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 11:23:29 +01:00
14 lines
No EOL
212 B
Groovy
14 lines
No EOL
212 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Document') {
|
|
when {
|
|
branch 'main'
|
|
}
|
|
steps {
|
|
sh 'docfx.exe'
|
|
sh 'cp _site/** /var/www/tinylifedocs/ -r'
|
|
}
|
|
}
|
|
}
|
|
} |