Fork me on GitHub
#leiningen
<
2018-02-06
>
rnagpal15:02:25

I am facing this issue and blocked on it

rnagpal15:02:43

Lein gives no details

rymndhng18:02:07

@rnagpal did you modify the release steps of your project.clj? it's showing the raw git error message (subtly):

On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working tree clean

rnagpal19:02:23

@rymndhng I did modify the release tasks, mostly to not sign the release. Here are the release tasks that I have

:release-tasks [["vcs" "assert-committed"]
                  ["change" "version" "leiningen.release/bump-version" "release"]
                  ["vcs" "commit"]
                  ["vcs" "tag" "--no-sign"]
                  ["deploy"]
                  ["change" "version" "leiningen.release/bump-version"]
                  ["vcs" "commit"]
                  ["vcs" "push"]]

rymndhng19:02:49

My debugging advice is to run each of the release tasks one at a time by hand to see what it's doing and failing

lein vcs assert-commited
lein change version leiningen.release/bump-version release
lein vcs commit
...