fixed stash patterns

This commit is contained in:
Ell 2023-04-26 12:41:43 +02:00
parent aadb5d931b
commit c7a372dba3

4
Jenkinsfile vendored
View file

@ -9,7 +9,7 @@ pipeline {
sh '''cd web
bundle
bundle exec jekyll build'''
stash includes: "web/_site/.", name: "docs"
stash includes: "web/_site/**", name: "site"
}
}
stage('Docs') {
@ -17,7 +17,7 @@ pipeline {
sh '''cd docs
dotnet tool restore
dotnet docfx'''
stash includes: "docs/_site/.", name: "docs"
stash includes: "docs/_site/**", name: "docs"
}
}
}