Behaviour for post-bump hooks.
Post-hooks run after the version bump is applied. They receive a context map with the results of the bump.
Example
defmodule MyProject.NotifySlack do
@behaviour Releaser.Hooks.PostHook
@impl true
def run(context) do
# Send notification...
:ok
end
endThen configure:
releaser: [hooks: [post: [Releaser.Hooks.GitTag, MyProject.NotifySlack]]]