Build Debug APK:
git push origin master
# Wait for workflow to complete
# Download from Actions > ArtifactsCreate Release:
git tag v3.8
git push origin v3.8
# Release created automatically
# APKs available in Releases sectionSubmit Changes:
git checkout -b feature/my-feature
# Make changes
git commit -m "Add my feature"
git push origin feature/my-feature
# Create PR - automated checks will run| Workflow | Purpose | Trigger |
|---|---|---|
| Android CI Build | Build debug/release APKs | Push, PR, Manual |
| Android Release | Create GitHub releases | Version tags |
| PR Checks | Code quality checks | Pull requests |
| Nightly Build | Daily test builds | Schedule, Manual |
Full Guide: See WORKFLOWS_GUIDE.md
Topics covered:
- Detailed workflow descriptions
- APK signing setup
- Troubleshooting
- Best practices
- Customization
For signed releases, add to repository secrets:
KEYSTORE_FILE- Base64 encoded keystoreKEY_ALIAS- Keystore aliasKEYSTORE_PASSWORD- Keystore passwordKEY_PASSWORD- Key password
See WORKFLOWS_GUIDE.md for details.
Read the comprehensive guide or check workflow logs in Actions tab.