TinyLifeWeb/Jenkinsfile

14 lines
212 B
Plaintext
Raw Normal View History

2021-08-04 05:42:02 +02:00
pipeline {
agent any
stages {
stage('Document') {
when {
2021-08-04 05:44:15 +02:00
branch 'main'
2021-08-04 05:42:02 +02:00
}
steps {
2021-11-09 01:26:22 +01:00
sh 'docfx.exe'
2021-08-04 05:42:02 +02:00
sh 'cp _site/** /var/www/tinylifedocs/ -r'
}
}
}
}