From f7c172ad1274f0f3074d673cba383638979ef1f9 Mon Sep 17 00:00:00 2001 From: zenlex Date: Sat, 27 Apr 2024 02:02:06 -0500 Subject: [PATCH] fix(ci): quote tag pattern --- .github/workflows/deploy-frontend.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy-frontend.yml b/.github/workflows/deploy-frontend.yml index 690de78b..b20a8854 100644 --- a/.github/workflows/deploy-frontend.yml +++ b/.github/workflows/deploy-frontend.yml @@ -5,7 +5,8 @@ name: # Using a different branch name? Replace `main` with your branch’s name on: push: - tags: v[0-9]+.[0-9]+.[0-9]+ + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' # Allows you to run this workflow manually from the Actions tab on GitHub. # eslint-disable-next-line yml/no-empty-mapping-value workflow_dispatch: