mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-10-31 21:00:51 +01:00
skip checkout when publishing docs
This commit is contained in:
parent
c77ec3765c
commit
b289bbd98e
1 changed files with 2 additions and 1 deletions
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
|
@ -31,8 +31,9 @@ pipeline {
|
|||
}
|
||||
}
|
||||
stage('Publish Docs') {
|
||||
agent { label 'web' }
|
||||
when { branch 'release' }
|
||||
agent { label 'web' }
|
||||
options { skipDefaultCheckout() }
|
||||
steps {
|
||||
unstash 'site'
|
||||
sh 'rm -rf /var/www/MLEM/*'
|
||||
|
|
Loading…
Reference in a new issue