Added
- Added latest release management.
Latest release management
This action can now manage when published releases are set as the latest release for the repo.
By default, releases created by this action will be marked as the latest release if they are newly created, non-draft, stable releases. Other strategies for when to set the latest release can be configured via the makeLatest
action input or configuration option. Strategies include:
if-new
: Set the release as latest if it is newly created. This is the default strategy.semver
: Set the release as latest if it's a SemVer version greater than the current latest release.legacy
: Defer to GitHub's legacy behavior for choosing latest releases.always
: Always set the release as latest, even if it's not newly created.never
: Never set the release as latest.