Browse Source

Jenkins: fix msg files stash

master
Daniel Agar 4 years ago
parent
commit
b98656ccb4
No known key found for this signature in database
GPG Key ID: FD3CBA98017A69DE
  1. 4
      Jenkinsfile

4
Jenkinsfile vendored

@ -150,8 +150,8 @@ pipeline { @@ -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 {

Loading…
Cancel
Save