You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When #5366 is merged (ref: #5233), our main workflow for creating releases will be to run ./scripts/release.sh from the project.
This script still does tagging and pushing the tag on the developers local machine, we want to move this process to a GitHub workflow that can be triggered either via release.sh or via the GitHub UI.
The workflow should take input parameters like dry_run: boolean, minor: boolean, (major: boolean), draft: boolean.
We don't do major releases yet, so that can wait. Dry-run lets the result be inspected. Minor is for forcing a minor version bump even if there are no breaking changes. Draft creates a new draft release that can be edited by a human before publishing.
The text was updated successfully, but these errors were encountered:
When #5366 is merged (ref: #5233), our main workflow for creating releases will be to run
./scripts/release.sh
from the project.This script still does tagging and pushing the tag on the developers local machine, we want to move this process to a GitHub workflow that can be triggered either via
release.sh
or via the GitHub UI.The workflow should take input parameters like
dry_run: boolean
,minor: boolean
, (major: boolean
),draft: boolean
.We don't do major releases yet, so that can wait. Dry-run lets the result be inspected. Minor is for forcing a minor version bump even if there are no breaking changes. Draft creates a new draft release that can be edited by a human before publishing.
The text was updated successfully, but these errors were encountered: