Hi, I am having trouble deploying a library to clojars. When I run lein deploy clojars
I am asked to provide gpg key for signing, but I do not want to sign the package nor can find any information saying I must sign the package. What am I doing wrong?
@vipaca: by default, lein tries to sign releases. You can disable that by setting :sign-releases false
in project.clj
. Give me a sec and I'll give an example
:deploy-repositories [["clojars" {:url "<https://clojars.org/repo/>"
:sign-releases false}]]
try that
Awesome this worked!
I did add it to my profile.clj instead though.
{:user
{:deploy-repositories [["clojars" {:url "<https://clojars.org/repo/>"
:sign-releases false}]]}}
good deal