Create a new issue from the Alpakka Kafka Release Train Issue Template and follow the steps.
~/alpakka> scripts/create-release-issue.sh `version-to-be-released`
It is possible to release a revised documentation to the already existing release.
- Create a new branch from a release tag. If a revised documentation is for the
v1.1.1
release, then the name of the new branch should bedocs/v1.1.1
. - Add and commit
version.sbt
file that pins the version to the one, that is being revised. Also setisSnapshot
tofalse
for the stable documentation links. For example:ThisBuild / version := "1.1.1" ThisBuild / isSnapshot := false
- Make all of the required changes to the documentation.
- Check the documentation update locally:
sbt docs/previewSite
- If the generated documentation looks good, send it to Gustav:
sbt docs/publishRsync
- Do not forget to push the new branch back to GitHub.