also copy the manual and commissions
Some checks failed
Web/pipeline/head There was a failure building this commit

This commit is contained in:
Ell 2021-07-09 03:20:34 +02:00
parent fbd5500690
commit c6bd12a412

9
Jenkinsfile vendored
View file

@ -16,9 +16,14 @@ pipeline {
branch 'master'
}
steps {
sh '''rm -rf /var/www/ellpeck/*
cp -r main/_site/. /var/www/ellpeck'''
sh '''rm -rf ${env.DEST}/*
cp -r main/_site/. ${env.DEST}
cp -r actaddmanual ${env.DEST}
cp -r commissions ${env.DEST}'''
}
}
}
environment {
DEST = "/var/www/ellpeck"
}
}