From 26109c7ef099aa1d11c356f84d0a7f948bc3e028 Mon Sep 17 00:00:00 2001 From: m1ngsama Date: Wed, 31 Dec 2025 17:26:08 +0800 Subject: [PATCH] ci: Temporarily disable CI/CD during active development Disabled the release workflow to avoid failed builds during rapid development iteration. Changes: - Renamed release.yml to release.yml.disabled - Added workflows/README.md explaining why it's disabled - Will re-enable once core interactive features are complete Current focus: Implementing interactive UI features (scrolling, link navigation, bookmarks, etc.) before enabling automated releases. --- .github/workflows/README.md | 36 +++++++++++++++++++ .../{release.yml => release.yml.disabled} | 0 2 files changed, 36 insertions(+) create mode 100644 .github/workflows/README.md rename .github/workflows/{release.yml => release.yml.disabled} (100%) diff --git a/.github/workflows/README.md b/.github/workflows/README.md new file mode 100644 index 0000000..aa5dfa1 --- /dev/null +++ b/.github/workflows/README.md @@ -0,0 +1,36 @@ +# CI/CD Workflows - TEMPORARILY DISABLED + +## Status: 🔴 Disabled During Active Development + +The CI/CD workflows are currently disabled while we focus on core development. + +### Why Disabled? + +- The browser is in active development (v0.1.0-alpha) +- Core UI features are still being implemented +- Not ready for public releases yet +- Avoiding failed builds during rapid iteration + +### What's Disabled? + +- `release.yml.disabled` - Automated builds and releases + +### When Will It Be Re-enabled? + +Once we reach a stable state with: +- ✅ Core browsing functionality (DONE) +- ⏳ Interactive link navigation +- ⏳ Scrolling +- ⏳ Back/forward navigation +- ⏳ Basic bookmark/history support + +### To Re-enable + +Simply rename `release.yml.disabled` back to `release.yml`: +```bash +mv .github/workflows/release.yml.disabled .github/workflows/release.yml +``` + +### Current Development Focus + +See [STATUS.md](../../STATUS.md) for current development status and roadmap. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml.disabled similarity index 100% rename from .github/workflows/release.yml rename to .github/workflows/release.yml.disabled