From 34ba74f7447383195e464103d03991fc52f7c0fc Mon Sep 17 00:00:00 2001 From: Matthew Feickert Date: Tue, 12 Sep 2023 02:08:06 -0500 Subject: [PATCH] CI: Quote regex to avoid syntax error * Regex on tag must be quoted to avoid YAML syntax error. --- .github/workflows/publish-package.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-package.yml b/.github/workflows/publish-package.yml index ac7aa8e5..35f087d2 100644 --- a/.github/workflows/publish-package.yml +++ b/.github/workflows/publish-package.yml @@ -4,8 +4,8 @@ on: branches: - main tags: - - [0-9]+.[0-9]+ - - [0-9]+.[0-9]+.[0-9]+ + - '[0-9]+.[0-9]+' + - '[0-9]+.[0-9]+.[0-9]+' pull_request: branches: - main