mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-26 12:58:34 +01:00
actually copy everything to dest
This commit is contained in:
parent
cc9518a746
commit
a501470294
1 changed files with 2 additions and 2 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -7,7 +7,7 @@ pipeline {
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'rm -rf /var/www/tinylifegame/*'
|
sh 'rm -rf /var/www/tinylifegame/*'
|
||||||
sh 'cp web/** /var/www/tinylifegame/ -r'
|
sh 'cp web/. /var/www/tinylifegame/ -r'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Docs') {
|
stage('Docs') {
|
||||||
|
@ -17,7 +17,7 @@ pipeline {
|
||||||
steps {
|
steps {
|
||||||
sh 'cd docs; docfx.exe'
|
sh 'cd docs; docfx.exe'
|
||||||
sh 'rm -rf /var/www/tinylifedocs/*'
|
sh 'rm -rf /var/www/tinylifedocs/*'
|
||||||
sh 'cp docs/_site/** /var/www/tinylifedocs/ -r'
|
sh 'cp docs/_site/. /var/www/tinylifedocs/ -r'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue