We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263cbe6 commit b32c1feCopy full SHA for b32c1fe
lib/git_ops/changelog.ex
@@ -101,6 +101,7 @@ defmodule GitOps.Changelog do
101
[
102
url,
103
"/compare/",
104
+ Config.prefix(),
105
last_version,
106
"...",
107
current_version
lib/mix/tasks/git_ops.release.ex
@@ -205,6 +205,7 @@ defmodule Mix.Tasks.GitOps.Release do
205
206
git commit -am "chore: release version #{new_version}"
207
git tag -a #{new_version} -m "release #{new_version}"
208
+ git push --follow-tags
209
""")
210
end
211
0 commit comments