Add GitHub release pipeline#92
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 2d7e7037aa
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| changelog = Path("CHANGELOG.md") | ||
| if not changelog.exists(): | ||
| raise SystemExit("CHANGELOG.md is required for release notes") |
There was a problem hiding this comment.
Avoid hard-failing releases on missing CHANGELOG.md
This workflow unconditionally exits when CHANGELOG.md is absent, but the repository currently has no CHANGELOG.md, so every tag push that triggers release.yml will fail before creating a GitHub Release. Because this commit also enables capabilities.release, the new release path is effectively unusable until a changelog file is added or a fallback note strategy is implemented.
Useful? React with 👍 / 👎.
Summary
scripts/release/dry-run.shfor pre-tag build verificationCI Gatefor release/packaging changesproject.bootstrap.yamlrelease capability togithub-releaseVerification
bash -n scripts/release/dry-run.shbash scripts/ci/check-ci-contract.shPYTHON_BIN=/private/tmp/mailplus-release-venv/bin/python bash scripts/release/dry-run.sh --skip-fast-checksbash scripts/ci/run-fast-checks.shCloses #86.