Commit d569818
committed
fix: Correct regex character class in tag validation
The regex was using \-\. which creates an invalid character range in bash.
Changed to .- (without escaping) which works correctly for matching
hyphens and dots in prerelease tags.
Fixes Docker build workflow failure during tag validation.1 parent 6448160 commit d569818
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
97 | 97 | | |
98 | 98 | | |
99 | 99 | | |
100 | | - | |
| 100 | + | |
101 | 101 | | |
102 | 102 | | |
103 | 103 | | |
| |||
0 commit comments