Skip to content

Commit f7c172a

Browse files
committed
fix(ci): quote tag pattern
1 parent 3689ea6 commit f7c172a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/deploy-frontend.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ name:
55
# Using a different branch name? Replace `main` with your branch’s name
66
on:
77
push:
8-
tags: v[0-9]+.[0-9]+.[0-9]+
8+
tags:
9+
- 'v[0-9]+.[0-9]+.[0-9]+'
910
# Allows you to run this workflow manually from the Actions tab on GitHub.
1011
# eslint-disable-next-line yml/no-empty-mapping-value
1112
workflow_dispatch:

0 commit comments

Comments
 (0)