From b98656ccb4926f4a19a8487753219346bf5f3244 Mon Sep 17 00:00:00 2001 From: Daniel Agar Date: Sat, 14 Aug 2021 14:58:57 -0400 Subject: [PATCH] Jenkins: fix msg files stash --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3b4b8c09ea..da6500631a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -150,8 +150,8 @@ pipeline { steps { sh './msg/tools/generate_msg_docs.py -d /tmp/msg_docs' dir('/tmp') { - archiveArtifacts(artifacts: 'msg_docs/*.md') - stash includes: 'msg_docs/*.md', name: 'msg_documentation' + archiveArtifacts(artifacts: '/tmp/msg_docs/*.md') + stash includes: '/tmp/msg_docs/*.md', name: 'msg_documentation' } } post {