We have a workflow to publish the jars, but no process for tagging releases
We want something like:
git tag v1.1.0
git push --tags --> this will trigger a clojars publish
gh release create v1.1.0 -> interactively lets you add release notes (or just use the GH ui)
Release tasks:
Ideally should be automated with a bb prep-release command
- Update CHANGELOG for about-to-be-released version
- Prepare CHANGELOG for next unreleased version
- Update any version references in .edn and docs with the about-to-be-released version
Then we need to modify the workflow so it publishes automatically when new tags are pushed.
We have a workflow to publish the jars, but no process for tagging releases
We want something like:
Release tasks:
Ideally should be automated with a
bb prep-releasecommandThen we need to modify the workflow so it publishes automatically when new tags are pushed.