diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index 086b1859..87646179 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -1,7 +1,10 @@ name: Alpha Build on: - workflow_dispatch: + # 因为 alpha 不再负责频繁构建,且需要相对于 autobuild 更稳定使用环境 + # 所以不再使用 workflow_dispatch 触发 + # 应当通过 git tag 来触发构建 + # workflow_dispatch: push: tags: - "v*.*.*-alpha*" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4eacd166..b06c37ef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,5 +1,5 @@ name: Release Build - +# TODO: 参照 alpha.yml 修改,实现稳定版发布,只允许通过 git tag 触发 on: workflow_dispatch: permissions: write-all diff --git a/README.md b/README.md index e8d425f5..724674f7 100644 --- a/README.md +++ b/README.md @@ -18,10 +18,18 @@ A Clash Meta GUI based on Tauri -Go to the [release page](https://github.com/clash-verge-rev/clash-verge-rev/releases) to download the corresponding installation package
+Go to the [Release page](https://github.com/clash-verge-rev/clash-verge-rev/releases) to download the corresponding installation package
Supports Windows (x64/x86), Linux (x64/arm64) and macOS 10.15+ (intel/apple). -### 安装说明和常见问题,请到[文档页](https://clash-verge-rev.github.io/)查看:[Doc](https://clash-verge-rev.github.io/) +#### 我应当怎样选择发行版 + +| 版本 | 特征 | 链接 | +|:-----|:-----|:-----| +|Stable|正式版,高可靠性,适合日常使用。|[Release](https://github.com/clash-verge-rev/clash-verge-rev/releases) | +|Alpha|早期测试版,功能未完善,可能存在缺陷。|[Alpha](https://github.com/clash-verge-rev/clash-verge-rev/releases/tag/alpha)| +|AutoBuild|滚动更新版,持续集成更新,适合开发测试。|[AutoBuild](https://github.com/clash-verge-rev/clash-verge-rev/releases/tag/autobuild)| + +#### 安装说明和常见问题,请到 [文档页](https://clash-verge-rev.github.io/) 查看 ---