Does anyone have a favorite way to deploy to clojars in a deps.edn project? Im thinking perhaps lein for that purpose. Or maybe a standalone babashka deal
the classic deps.edn way is to add a build.clj file and then call clj -T:build deploy.
If you install the neil too , you just have to write:
neil add build
and it will gen a build.clj for you that you can then adapt to your needsor you could copy/paste a build.clj from a previous project
Many thanks 🙏