Skip to content
Dude McDude edited this page Sep 6, 2022 · 13 revisions

Making a release

Tag a commit as v1.0.XXX and push to origin. This triggers the AppVeyor release script, which will prepare a release to Github.
Afterwards, you need to update the RELEASES file on this repository to let the auto-updater know about the latest release. The RELEASES file is auto-generated as part of the AppVeyor artifacts.

Open GitShell
git tag v1.0.X
git push origin v1.0.X

Appveyor: Use TemplePlus Nightly!!!!
https://ci.appveyor.com/project/templeplus/templeplus

Update RELEASES file here:
https://github.com/GrognardsFromHell/grognardsfromhell.github.io/tree/master/update-feeds/stable

To clear release: (in case of some foul up)

git tag -d v1.0.XX - removes local tag
git push origin :refs/tags/v1.0.XX - removes remote tag
Delete from appveyor history (otherwise it won't overwrite)
Delete from GitHub Releases

Clone this wiki locally