Release Operations Runbook¶
This runbook covers operational procedures for releasing MCP Hangar.
Table of Contents¶
Standard Release¶
Prerequisites¶
- [ ] All CI checks passing on
mainbranch - [ ] CHANGELOG.md updated with release notes
- [ ] No blocking issues in milestone
Procedure¶
Step 1: Verify Main Branch State¶
git checkout main
git pull origin main
git status # Should be clean
# Run full test suite
uv run pytest tests/ -v
uv run pre-commit run --all-files
Step 2: Initiate Version Bump (Automated)¶
- Navigate to GitHub → Actions → Version Bump
- Click Run workflow
- Select parameters:
bump_type:patch|minor|majorprerelease: empty for stable, orrc.1for release candidatedry_run:trueto preview changes first- Monitor workflow execution
Step 3: Monitor Release Pipeline¶
After version tag is pushed, the Release workflow triggers automatically:
- Validate — Checks tag matches pyproject.toml
- Test — Runs full test matrix (Python 3.10-3.13)
- Publish PyPI — Builds and uploads to PyPI
- Publish Docker — Builds multi-arch images, pushes to GHCR
- Create Release — Creates GitHub Release with changelog
Monitor at: https://github.com/mapyr/mcp-hangar/actions
Step 4: Verify Artifacts¶
# Verify PyPI package
pip install mcp-hangar==<VERSION> --dry-run
# Verify Docker image
docker pull ghcr.io/mapyr/mcp-hangar:<VERSION>
docker run --rm ghcr.io/mapyr/mcp-hangar:<VERSION> --version
Step 5: Post-Release¶
- [ ] Verify GitHub Release page has correct changelog
- [ ] Update documentation site if needed
- [ ] Announce in relevant channels (Discord, Slack, etc.)
- [ ] Close milestone in GitHub
Emergency Hotfix¶
Use this procedure for critical bugs in production releases.
Severity Assessment¶
| Severity | Description | Response Time |
|---|---|---|
| P0 | Security vulnerability, data loss | Immediate |
| P1 | Major functionality broken | < 4 hours |
| P2 | Significant bug, workaround exists | < 24 hours |
Procedure¶
Step 1: Create Hotfix Branch¶
# From the affected version tag
git fetch --tags
git checkout -b hotfix/X.Y.Z vX.Y.Z-1 # e.g., hotfix/1.0.1 from v1.0.0
Step 2: Apply Fix¶
Step 3: Update Version and Changelog¶
# Update pyproject.toml
sed -i 's/version = ".*"/version = "X.Y.Z"/' pyproject.toml
# Add hotfix entry to CHANGELOG.md
cat >> CHANGELOG_HOTFIX.md << 'EOF'
## [X.Y.Z] - YYYY-MM-DD
### Fixed
- Description of critical fix (#issue)
EOF
# Prepend to CHANGELOG.md after header
Step 4: Tag and Push¶
git add -A
git commit -m "fix: [CRITICAL] description of fix"
git tag -a vX.Y.Z -m "Hotfix: description"
git push origin hotfix/X.Y.Z
git push origin vX.Y.Z
Step 5: Cherry-pick to Main¶
Release Rollback¶
If a release introduces critical issues that can't be hotfixed quickly.
PyPI Rollback¶
PyPI doesn't allow re-uploading deleted versions. Instead:
-
Yank the version (marks as not recommended):
-
Release a new patch version with the fix or revert.
Docker Rollback¶
-
Update
latesttag to previous stable version: -
Document the issue in GitHub Release notes.
Communication¶
- Update GitHub Release to mark as "Known Issues"
- Post in announcement channels with:
- Affected versions
- Impact description
- Recommended action (upgrade to X.Y.Z+1 or pin to X.Y.Z-1)
Troubleshooting¶
Release Workflow Failures¶
Test Failures¶
Resolution:
1. Check test logs in Actions
2. Reproduce locally: uv run pytest tests/ -v --tb=long
3. Fix and push to main
4. Delete failed tag: git push origin :refs/tags/vX.Y.Z
5. Re-run Version Bump workflow
PyPI Publish Failure¶
Resolution:
1. Verify PyPI Trusted Publisher is configured:
- Go to PyPI → Project → Publishing
- Add GitHub publisher: mapyr/mcp-hangar, workflow release.yml
2. Ensure environment: pypi is set in workflow
Docker Build Failure¶
Resolution: 1. Check if Dockerfile has architecture-specific dependencies 2. May need to add platform-specific build stages 3. Consider removing arm64 from platforms temporarily
Version Mismatch¶
Resolution:
1. Either update pyproject.toml to match tag
2. Or delete tag and re-create with correct version:
Manual Intervention Required¶
If automated workflows fail and manual release is needed:
# Build package
python -m build
# Upload to PyPI (requires API token)
twine upload dist/*
# Build and push Docker
docker buildx build --platform linux/amd64,linux/arm64 \
-t ghcr.io/mapyr/mcp-hangar:X.Y.Z \
-t ghcr.io/mapyr/mcp-hangar:latest \
--push .
Contacts¶
| Role | Contact |
|---|---|
| Release Manager | @maintainer |
| Security Issues | GitHub Security |
| Infrastructure | @infra-team |
Changelog¶
| Date | Change | Author |
|---|---|---|
| 2026-01-12 | Initial runbook creation | CI/CD Setup |