How can i publish a folder (not zip) like an artifact with gradle

I want to create and publish an artifact which is a simple folder ,in mavenLocal repository without converting it to Zip , can i do it with gradle???

Each artifact you publish must be a single file so you’ll need to zip up your folder to publish it.

1 Like

Ok thak you so much .