mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 19:28:35 +01:00
also build web if not publishing
This commit is contained in:
parent
01a054b2e7
commit
aadb5d931b
1 changed files with 29 additions and 18 deletions
47
Jenkinsfile
vendored
47
Jenkinsfile
vendored
|
@ -1,26 +1,37 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'web' }
|
agent none
|
||||||
stages {
|
stages {
|
||||||
stage('Site') {
|
stage('Build') {
|
||||||
when {
|
agent any
|
||||||
branch 'main'
|
stages {
|
||||||
}
|
stage('Site') {
|
||||||
steps {
|
steps {
|
||||||
sh '''cd web
|
sh '''cd web
|
||||||
bundle
|
bundle
|
||||||
bundle exec jekyll build'''
|
bundle exec jekyll build'''
|
||||||
sh 'rm -rf /var/www/tinylifegame/*'
|
stash includes: "web/_site/.", name: "docs"
|
||||||
sh 'cp -r web/_site/. /var/www/tinylifegame/'
|
}
|
||||||
|
}
|
||||||
|
stage('Docs') {
|
||||||
|
steps {
|
||||||
|
sh '''cd docs
|
||||||
|
dotnet tool restore
|
||||||
|
dotnet docfx'''
|
||||||
|
stash includes: "docs/_site/.", name: "docs"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Docs') {
|
stage('Publish') {
|
||||||
when {
|
when { branch 'main' }
|
||||||
branch 'main'
|
agent { label 'web' }
|
||||||
}
|
options { skipDefaultCheckout() }
|
||||||
steps {
|
steps {
|
||||||
sh '''cd docs
|
unstash 'site'
|
||||||
dotnet tool restore
|
sh 'rm -rf /var/www/tinylifegame/*'
|
||||||
dotnet docfx'''
|
sh 'cp -r web/_site/. /var/www/tinylifegame/'
|
||||||
|
|
||||||
|
unstash 'docs'
|
||||||
sh 'rm -rf /var/www/tinylifedocs/*'
|
sh 'rm -rf /var/www/tinylifedocs/*'
|
||||||
sh 'cp -r docs/_site/. /var/www/tinylifedocs/'
|
sh 'cp -r docs/_site/. /var/www/tinylifedocs/'
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue