From 554cb7762d230df24c4a82da7e37a1792260f842 Mon Sep 17 00:00:00 2001 From: haex Date: Mon, 10 Nov 2025 11:58:13 +0100 Subject: [PATCH] Document automated release process in README --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/README.md b/README.md index 76b4071..39c669c 100644 --- a/README.md +++ b/README.md @@ -168,6 +168,32 @@ pnpm install pnpm tauri dev ``` +#### 📦 Release Process + +Create a new release using the automated scripts: + +```bash +# Patch release (0.1.13 → 0.1.14) +pnpm release:patch + +# Minor release (0.1.13 → 0.2.0) +pnpm release:minor + +# Major release (0.1.13 → 1.0.0) +pnpm release:major +``` + +The script automatically: +1. Updates version in `package.json` +2. Creates a git commit +3. Creates a git tag +4. Pushes to remote + +GitHub Actions will then automatically: +- Build desktop apps (macOS, Linux, Windows) +- Build Android apps (APK and AAB) +- Create and publish a GitHub release + #### 🧭 Summary HaexHub aims to: