Skip to content

Playtest or Release Checklist

Matthias Mailรคnder edited this page Oct 30, 2022 · 42 revisions

We'll assume the upstream openra repository is aliased to upstream.

Branching off a new stabilization branch while tagging a new playtest

  • git fetch upstream
  • git checkout -b prep-YYMM upstream/bleed
  • git tag playtest-yyyymmdd
  • git push upstream playtest-yyyymmdd HEAD

Tagging a new playtest during stabilization

  • git fetch upstream
  • git checkout -B prep-YYMM upstream/prep-YYMM
  • git tag playtest-yyyymmdd
  • git push upstream playtest-yyyymmdd

Tagging a release

  • git fetch upstream
  • git checkout -B prep-YYMM upstream/prep-YYMM
  • git tag release-yyyymmdd
  • git push upstream release-yyyymmdd
  • git push upstream +HEAD:master

Warning: The current make version does not use the latest, but the first tag, so we need an extra commit to separate last playtest and new release. Don't forget to update the branches. GitHub Actions will automatically start building and deploying the packages at GitHub releases.

Announce

Optional

Players ๐ŸŽฒ

Modders โœ๏ธ

Developers ๐Ÿ”ง

Clone this wiki locally