We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5c3d2d4 + 8359267 commit daf3433Copy full SHA for daf3433
tagger/tag.php
@@ -4,6 +4,9 @@
4
}
5
$originalBranch = $argv[1];
6
$tag = $argv[2];
7
+if (!preg_match('/^v[1-9]\d+\.\d+\.\d+(?:(?:alpha|beta|rc)\d+)?$/', $tag)) {
8
+ die('Invalid tag format. It should be vXX.Y.Z[alphaX|betaX|rcX]');
9
+}
10
11
// to the rescue, when tagging a release was forgotten
12
// call it with the date of the release tar ball. This can be received from the download server via, e.g.
0 commit comments