Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6a6ec77

Browse filesBrowse files
committed
Add brief notes to release process
1 parent 0bfbb6f commit 6a6ec77
Copy full SHA for 6a6ec77

File tree

Expand file treeCollapse file tree

1 file changed

+20
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+20
-0
lines changed

‎RELEASE.md

Copy file name to clipboard
+20Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Making a release
2+
3+
When the version changes, a new release should be cut. To do this, push a tag
4+
with the [valid SemVer][semver-checker] version number as the tag.
5+
It may also be useful to update documentation references at the same time.
6+
7+
## Example
8+
9+
For Bookstack version 23.01:
10+
11+
```shell
12+
sed -i '' -e 's/22.11.1/23.1.0/g' * # 22.11.1 was the previous version
13+
git commit -am "Update references to version 23.1.0" [-S]
14+
git tag [-s] -a 23.1.0 -m "Release version 23.01"
15+
git push --tags
16+
```
17+
18+
The workflow will then build, test, push, and release this image.
19+
20+
[semver-checker]: https://jubianchi.github.io/semver-check/

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.