Jenkins: fix msg files stash

This commit is contained in:
Daniel Agar 2021-08-14 14:58:57 -04:00
parent f2bae02f87
commit b98656ccb4
No known key found for this signature in database
GPG Key ID: FD3CBA98017A69DE

4
Jenkinsfile vendored
View File

@ -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 {