From 0b3acd9adc235d7756ef56f7ee66cf6d082331f5 Mon Sep 17 00:00:00 2001 From: ArvinLovegood Date: Wed, 21 May 2025 10:15:17 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E6=9B=B4=E6=96=B0=20GitHub=20Actions=20?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=E8=A7=A6=E5=8F=91=E6=9D=A1=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将标签匹配模式从 '*' 改为 '*-release' - 仅匹配以 '-release' 结尾的标签,限制发布次数 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0a11cec..8bfb5de 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,7 +4,7 @@ on: push: tags: # Match any new tag - - '*' + - '*-release' env: # Necessary for most environments as build failure can occur due to OOM issues