Skip to content

Commit 0ee4140

Browse files
authored
Merge pull request #30 from FTBTeam/1.21.1/dev
fix: release.yml had wrong tags regex
2 parents 9ed5201 + cc3c6c7 commit 0ee4140

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Java CI - Build Release
33
on:
44
push:
55
tags:
6-
- 'v[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+'
7-
- 'v[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[a-z]+'
8-
- 'v[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+-[a-z]+\.[0-9]+'
6+
- 'v[0-9]+\.[0-9]+\.[0-9]+'
7+
- 'v[0-9]+\.[0-9]+\.[0-9]+-[a-z]+'
8+
- 'v[0-9]+\.[0-9]+\.[0-9]+-[a-z]+\.[0-9]+'
99

1010
jobs:
1111
build:

0 commit comments

Comments
 (0)