Why ** does not work when excluding artifacts path?
Hi,
i set up artifacts path as:
+:src => SourceCode.zip
-:**/packages
-:**/node_modules
src folder contains both packages and node_modules and teamcity when publishing artifacts writes:
[Publishing artifacts] Artifacts path '**/packages' not found
[Publishing artifacts] Artifacts path '**/node_modules' not found
and both folders and their contents are included in artifacts.
i even tried:
-:src/**/packages
or
-:**/packages => SourceCode.zip
but any combination results in path not found. According to documentation it should work, so why it does not work in this case?
Please sign in to leave a comment.
Hi,
I'm afraid this is a known issue: https://youtrack.jetbrains.com/issue/TW-59469
It should work if you replace the **/packages with **/packages/** Could you give it a try?