jenkins archive artifacts - what's the format?

前端 未结 1 1449
小蘑菇
小蘑菇 2021-02-02 08:14

I can\'t seem to figure out how to use the basic archive artifacts statement. What I want is to archive an entire subtree but naming it doesn\'t seem to work. Nor does dir

相关标签:
1条回答
  • 2021-02-02 08:55

    Directory/**/*.* -> All the files recursively under Directory

    **/*.* -> all the files in the workspace

    **/*.xml -> all xml files in your workspace.

    Directory/**/*.xml -> All the xml files recursively under Directory

    0 讨论(0)
提交回复
热议问题