Wayfinder SDK'sReleases
Automated Releases
This repository is configured with GitHub Actions workflows that automate the release process:
- Main Branch: When changes are merged to
main
, a standard release is created - Alpha Branch: When changes are merged to
alpha
, a prerelease (alpha tagged) is created
The workflow automatically:
- Determines whether to create a prerelease or standard release based on the branch
- Versions packages using changesets
- Publishes to npm
- Creates GitHub releases
- Pushes tags back to the repository
To use the automated process:
- Create changesets for your changes
- Push your changes to a feature branch
- Create a pull request to
alpha
(for prereleases) ormain
(for standard releases) - When the PR is merged, the release will be automatically created
How is this guide?