also copy the manual and commissions
Some checks failed
Web/pipeline/head There was a failure building this commit
Some checks failed
Web/pipeline/head There was a failure building this commit
This commit is contained in:
parent
fbd5500690
commit
c6bd12a412
1 changed files with 7 additions and 2 deletions
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
|
@ -16,9 +16,14 @@ pipeline {
|
||||||
branch 'master'
|
branch 'master'
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh '''rm -rf /var/www/ellpeck/*
|
sh '''rm -rf ${env.DEST}/*
|
||||||
cp -r main/_site/. /var/www/ellpeck'''
|
cp -r main/_site/. ${env.DEST}
|
||||||
|
cp -r actaddmanual ${env.DEST}
|
||||||
|
cp -r commissions ${env.DEST}'''
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
environment {
|
||||||
|
DEST = "/var/www/ellpeck"
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue