Skip to content
Min-Haw, Liu edited this page Oct 10, 2023 · 1 revision

Welcome to the renderer wiki!

Deployment

Changelog

Use hallmark to generate a new changelog entry

# New minor version
hallmark cc add minor

# New patch version
hallmark cc add patch

Manually adjust CHANGELOG.md content to make notes of new version change

Release

Version tagging

git tag -a vX.Y.Z

tag message

Version X.Y.Z

- Update detail 1
  - Update detail 1-1
  - Update detail 1-2
- Update detail 2

push to remote

git push origin vX.Y.Z

Delete local tag

git tag -d vX.Y.Z

Delete remote tag

git push --delete origin vX.Y.Z
Clone this wiki locally