From f4ffcce1dbe698552d98c59cd09661614de16d93 Mon Sep 17 00:00:00 2001 From: Kai Wu Date: Thu, 2 Nov 2023 11:18:13 +0800 Subject: [PATCH] allow and restrict MMMYYYY tag form (capital letters + numbers) for a automatic release; other tags are not proceeded --- .github/workflows/release_on_tag.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_on_tag.yml b/.github/workflows/release_on_tag.yml index 280daca..0379d45 100644 --- a/.github/workflows/release_on_tag.yml +++ b/.github/workflows/release_on_tag.yml @@ -3,7 +3,7 @@ name: release_on_tag on: push: tags: - - "[A-Z]+[0-9]+" + - "[A-Za-z]+[0-9]+" workflow_dispatch: jobs: