Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 543 Bytes

RELEASE_GUIDE.md

File metadata and controls

15 lines (9 loc) · 543 Bytes

Publishing a new release

  1. Install toml-cli if you haven't already (cargo install toml-cli --version 0.2.3).

  2. Run the script ./scripts/release.sh and follow the prompts.

Fixing a failed release

If for some reason the GitHub Actions release workflow failed with an error that needs to be fixed, you'll have to delete both the tag and corresponding release from GitHub. After you've pushed a fix, delete the tag from your local clone with

git tag -l | xargs git tag -d && git fetch -t

Then repeat the steps above.