Skip to content

Commit 6dcfd80

Browse files
committed
build(ci): fix release version check
- Fix release version check
1 parent 3fc7454 commit 6dcfd80

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release to Maven Central
33
on:
44
push:
55
tags:
6-
- '[0-9]+.[0-9]+.[0-9]+'
6+
- 'v[0-9]+.[0-9]+.[0-9]+'
77

88
jobs:
99
release:

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
tags:
8-
- '[0-9]+.[0-9]+.[0-9]+\-dev.\d+'
8+
- 'v[0-9]+.[0-9]+.[0-9]+\-dev.[0-9]+'
99

1010
jobs:
1111
publish-snapshot:

0 commit comments

Comments
 (0)