Create a new issue from the Akka HTTP Release Train Issue Template by running scripts/create-release-issue.sh
and follow the steps.
A few more background information about the process can be found below.
Akka HTTP uses Github Actions and to release artifacts automatically to Akka's library repository. For commits to the main
branch, it publishes artifacts to the snapshot repository.
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
v10.2.4
release, then the name of the new branch should bedocs/v10.2.4
:$ git checkout v10.2.4 $ git checkout -b docs/v10.2.4
- 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 := "10.2.4" ThisBuild / isSnapshot := false
- Make or cherry-pick updates to the docs
- Build documentation locally with:
sbt akka-docs/paradoxBrowse
- Don't forget to commit and push
- Upload the docs:
sbt docs/publishRsync