From ede65b4db290b588fabcfa905577879cbf060d10 Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Fri, 9 Oct 2020 23:15:14 -0700 Subject: (Try to) Recursively include all files in public/ --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9bb55e9..d5485b3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ pipeline { steps { sh 'cask' sh 'make html' - stash includes: 'public/*', name: 'public_html' + stash includes: 'public/**', name: 'public_html' } } @@ -24,7 +24,7 @@ pipeline { steps { sh 'make css' - stash includes: 'public/*', name: 'public_css' + stash includes: 'public/**', name: 'public_css' } } } -- cgit v1.2.3-54-g00ecf