From 4ad1fa4f654c6511c15b047b9819f2482988ef1e Mon Sep 17 00:00:00 2001 From: Arnab Ghose Date: Thu, 3 Aug 2023 08:58:45 +0530 Subject: [PATCH] fix: modified release candidate version regex pattern to accomodate multi-digit patch numbers --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0990d97..774a209 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,7 +3,7 @@ on: push: tags: - "v[0-9]+.[0-9]+.[0-9]+" - - "v[0-9]+.[0-9]+.[0-9]-rc.[0-9]+" + - "v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+" permissions: contents: write