From 803f32b567a1683bebb449d3c0df7344c1c321ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=AC=A7=E9=98=B3=E6=B7=87=E6=B7=87?= <35864297+hyb-oyqq@users.noreply.github.com> Date: Wed, 17 Dec 2025 23:46:50 +0800 Subject: [PATCH] =?UTF-8?q?ci(build-release):=20=E6=94=BE=E5=AE=BD?= =?UTF-8?q?=E8=A7=A6=E5=8F=91=E6=9D=A1=E4=BB=B6=E4=BB=A5=E6=94=AF=E6=8C=81?= =?UTF-8?q?=E4=BB=BB=E6=84=8F=E6=A0=87=E7=AD=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将 GitHub Actions 工作流的触发条件从仅限 'v*' 标签更改为 任意标签都会触发构建,提高发布流程的灵活性。 --- .github/workflows/build-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index e6a6bf4..a1049de 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -3,7 +3,7 @@ name: Build and Release on: push: tags: - - 'v*' # 当推送 v 开头的 tag 时触发,如 v1.0.0 + - '*' # 任意 tag 都会触发构建 jobs: build: