This document outlines the complete release process for Mue maintainers.
- Overview
- Version Numbering
- Pre-Release Checklist
- Beta Release Process
- Production Release Process
- Hotfix Release Process
- Post-Release Tasks
- Store Submission
- Troubleshooting
Mue uses a three-branch release workflow:
dev → beta → main
dev: Active development and feature integrationbeta: Release candidates for community testingmain: Production-ready stable releases
We follow Semantic Versioning: MAJOR.MINOR.PATCH
| Type | When | Example |
|---|---|---|
| Major (x.0.0) | Breaking changes, API changes, major UI overhaul | 7.5.0 → 8.0.0 |
| Minor (0.x.0) | New features, backward-compatible changes | 7.5.0 → 7.6.0 |
| Patch (0.0.x) | Bug fixes, small improvements | 7.5.0 → 7.5.1 |
Beta versions follow the format: MAJOR.MINOR.PATCH-beta.X
Example: 7.6.0-beta.1, 7.6.0-beta.2
Before starting any release:
- All intended features/fixes are merged to
dev - No critical bugs in issue tracker
-
devbranch builds successfully - All CI checks passing
- Translation updates synced from Weblate (if applicable)
- Breaking changes documented
-
Go to Actions → Version Bump → Run workflow
-
Configure:
- Branch:
dev - Bump type: Choose
patch,minor, ormajor - Pre-release: Select
beta
- Branch:
-
Click Run workflow
-
Workflow will:
- Calculate new version (e.g.,
7.6.0-beta.1) - Update all 6 version files
- Create git tag
- Push to
dev
- Calculate new version (e.g.,
-
Go to Pull Requests → New pull request
-
Configure:
- Base:
beta - Compare:
dev
- Base:
-
Fill in PR template:
- Add changelog preview
- List major changes
- Add testing notes
-
Get 2 maintainer approvals
-
Merge PR to
betabranch -
Beta Release Workflow auto-triggers:
- Builds extension for all browsers
- Creates GitHub pre-release
- Uploads Chrome/Firefox ZIPs
- Generates changelog
-
Verify release:
- Check Releases page
- Download and test ZIPs
- Verify version numbers
-
Share with testers:
- Post release link in Discord/testing channel
- Include installation instructions
- Provide feedback form/issue template
-
Monitor feedback:
- Track issues tagged with beta version
- Prioritize critical bugs
- Document all feedback
-
Fix issues:
- Fix bugs on
devbranch - Create new beta (repeat from Step 1)
- Increment beta number (7.6.0-beta.2, etc.)
- Fix bugs on
-
Minimum beta period: 3-7 days (depending on changes)
-
Stability criteria:
- No P0/P1 bugs reported
- Positive feedback from 5+ testers
- All critical features tested
- Beta has been stable for minimum period
- All critical beta bugs resolved
- Release notes prepared
- Store credentials verified
- Team notified of pending release
-
Go to Actions → Version Bump → Run workflow
-
Configure:
- Branch:
beta - Bump type: Usually same as beta (minor/major/patch)
- Pre-release: Leave empty (stable release)
- Branch:
-
This updates
7.6.0-beta.X→7.6.0
-
Go to Pull Requests → New pull request
-
Configure:
- Base:
main - Compare:
beta
- Base:
-
Fill in release PR checklist:
- Beta tested for X days
- All critical bugs resolved
- 5+ beta testers approved
- Release notes prepared
- Store submission ready
- Changelog updated on website
-
Get 2 maintainer approvals
-
Merge PR to
main -
Production Release Workflow starts:
- Builds extension
- Creates production tag
- Generates full changelog
- Creates GitHub release
- Pauses for manual approval
-
Review in GitHub:
- Go to Actions → Production Release → running workflow
- Review release notes
- Check build artifacts
- Approve deployment in Environments → production
-
Wait 10 minutes (cooldown period)
-
Release completes:
- GitHub release published
- ZIPs uploaded
- Tag created
Manual submission required (for now):
-
Go to Actions → Submit → Run workflow
-
Enter version tag:
7.6.0(no 'v' prefix) -
Click Run workflow
-
Monitor submission workflow:
- Chrome Web Store submission
- Firefox Add-ons submission
- Edge Add-ons submission
-
Verify store listings:
-
Store review times:
- Chrome: 1-3 days
- Edge: 1-2 days
- Firefox: hours to days
After production release, sync version to other branches:
# Update dev and beta with main
git checkout dev
git pull origin dev
git merge main
git push origin dev
git checkout beta
git pull origin beta
git merge main
git push origin betaOnly for critical production bugs:
- Security vulnerabilities
- Data loss bugs
- Extension completely broken
- Critical functionality broken for all users
-
Create hotfix branch from
main:git checkout main git pull origin main git checkout -b hotfix/brief-description
-
Fix the bug:
- Make minimal changes (hotfix only)
- Test thoroughly
- Commit with conventional format
-
Push branch:
git push origin hotfix/brief-description
-
Run hotfix workflow:
- Go to Actions → Hotfix Release → Run workflow
- Description: Brief bug description
- Branch name:
hotfix/brief-description - Click Run workflow
-
Approve deployment:
- Workflow pauses for approval
- Review changes carefully
- Approve in Environments → production
-
Workflow automatically:
- Bumps patch version (7.6.0 → 7.6.1)
- Merges to
main - Creates release tag
- Builds and releases
- Back-merges to
betaanddev
-
Submit to stores immediately:
- Go to Actions → Submit → Run workflow
- Enter new version (e.g.,
7.6.1)
-
Notify users:
- Post urgent update notice
- Update website changelog
- Notify via social media if critical
-
Clean up:
git push origin --delete hotfix/brief-description
After any production release:
- Verify store submissions completed
- Update https://muetab.com/blog/changelog
- Announce on Discord/social media
- Monitor issue tracker for new reports
- Verify demo site (demo.muetab.com) is updated
- Review analytics for adoption rate
- Address any quick-fix bugs as patch release
- Update roadmap/milestones
- Thank beta testers and contributors
- Monitor store reviews/ratings
- Respond to user feedback
- Plan next release cycle
Stored in GitHub Secrets as SUBMIT_KEYS:
{
"chrome": {
"extId": "bngmbednanpcfochchhgbkookpiaiaid",
"clientId": "...",
"clientSecret": "...",
"refreshToken": "..."
},
"firefox": {
"extId": "{ac143a20-4b61-4c81-abdd-4bff77032972}",
"jwtIssuer": "...",
"jwtSecret": "..."
},
"edge": {
"productId": "...",
"clientId": "...",
"clientSecret": "...",
"accessTokenUrl": "..."
}
}Chrome/Edge Beta:
- Use unlisted listing (share link with testers)
- Or use trusted testers group (max 1000)
Firefox Beta:
- Upload as unlisted to AMO
- Share download link from GitHub Releases
Safari Beta:
- Currently manual sideload from GitHub Releases
Issue: Build fails in workflow
Solutions:
- Check CI logs for specific error
- Run
bun run buildlocally to reproduce - Ensure all dependencies installed
- Check for linting errors:
bun run lint
Issue: Version numbers don't match across files
Solutions:
- Re-run Version Bump workflow
- Manually verify all 6 files:
- package.json
- manifest/chrome.json
- manifest/firefox.json
- safari/Mue Extension/Resources/manifest.json
- safari/Mue.xcodeproj/project.pbxproj
- src/config/constants.js
Issue: Git tag already exists for version
Solutions:
- Delete existing tag:
git tag -d v7.6.0 git push origin :refs/tags/v7.6.0
- Re-run workflow
Issue: PlasmoHQ BPP submission fails
Solutions:
- Check workflow logs for specific error
- Verify credentials in
SUBMIT_KEYSsecret - Check store developer console for issues
- Try manual submission as fallback
Issue: Conflicts when merging beta → main
Solutions:
- Update beta with main first:
git checkout beta git merge main git push origin beta
- Create new PR from beta → main
If a production release has critical bugs:
Follow Hotfix Process to quickly patch and release.
Each store allows rolling back to previous version:
Chrome Web Store:
- Go to Developer Dashboard
- Select Mue extension
- Package → Select previous version
- Publish
Firefox Add-ons:
- Go to Developer Hub
- Select Mue add-on
- Manage Status & Versions
- Enable previous version
Edge Add-ons:
- Go to Partner Center
- Select Mue extension
- Packages → Restore previous
git checkout main
git revert <commit-hash>
git push origin mainThen follow production release process.
Contact maintainers:
- @davidcralph
- @alexsparkes
Or open a discussion: https://github.com/mue/mue/discussions