Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 802 Bytes

RELEASE.md

File metadata and controls

24 lines (18 loc) · 802 Bytes

Making a release

When the version changes, a new release should be cut. To do this, push a tag with the valid SemVer version number as the tag. It may also be useful to update documentation references at the same time.

Example

For Bookstack version 23.01:

sed -i '' -e 's/22.11.1/23.1.0/g' Dockerfile  # 22.11.1 was the previous version
git commit -am "feat: Update Bookstack to version 23.1.0" [-S]
# Build and test this
git tag [-s] -a 23.1.0 -m "Release version 23.01"
git push --tags
sed -i '' -e 's/22.11.1/23.1.0/g' *  # Update documentation to point to the
newer release
git commit -am "doc: update references to version 23.1"

The workflow will then build, test, push, and release this image.