artifact path - folder with '.' in the name
How to capture a folder which is called MyApp.app.dSYM?
it is generated under checkout dir's release/${varying_name}/${version}/MyApp.app.dSYM
I've tried specifying release/**/MyApp.app.dSYM but log says:
[Publishing artifacts] Collecting files to publish: [release/**/*.ipa, release/**/*.plist, release/**/*.mobileprovision, release/**/MyApp.app.dSYM => MyApp.app.dSYM.zip]
[13:45:13][Publishing artifacts] Artifacts path 'release/**/MyApp.app.dSYM' not found.
but it is there.
Please sign in to leave a comment.
Please try adding " /** " to your path:
release/**/MyApp.app.dSYM/** => MyApp.app.dSYM.zip
That worked, thank you very much!