mirror of
https://github.com/Ellpeck/TinyLifeWeb.git
synced 2024-11-22 19:28:35 +01:00
fixed stash patterns
This commit is contained in:
parent
aadb5d931b
commit
c7a372dba3
1 changed files with 2 additions and 2 deletions
4
Jenkinsfile
vendored
4
Jenkinsfile
vendored
|
@ -9,7 +9,7 @@ pipeline {
|
||||||
sh '''cd web
|
sh '''cd web
|
||||||
bundle
|
bundle
|
||||||
bundle exec jekyll build'''
|
bundle exec jekyll build'''
|
||||||
stash includes: "web/_site/.", name: "docs"
|
stash includes: "web/_site/**", name: "site"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('Docs') {
|
stage('Docs') {
|
||||||
|
@ -17,7 +17,7 @@ pipeline {
|
||||||
sh '''cd docs
|
sh '''cd docs
|
||||||
dotnet tool restore
|
dotnet tool restore
|
||||||
dotnet docfx'''
|
dotnet docfx'''
|
||||||
stash includes: "docs/_site/.", name: "docs"
|
stash includes: "docs/_site/**", name: "docs"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue