Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 905 Bytes

RELEASE_PROCESS.md

File metadata and controls

29 lines (18 loc) · 905 Bytes

GitHub Release Process

Steps

  1. Update the VERSION file to list the new version.

  2. Run the release script:

    ./scripts/release.sh

    This will commit the changes to the CHANGELOG and VERSION files and then create a new tag in git which will trigger a workflow on GitHub Actions that handles the rest.

  3. Lastly, in order to publish to the Actions marketplace, find the major, minor, and patch releases on GitHub, click edit, and then "Publish".

    https://github.com/allenai/setup-beaker/releases

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.