Fix release- tags not being parsed
parent
0552639591
commit
2b2a5d0a92
|
@ -112,6 +112,9 @@ class VcsRepository extends ArrayRepository
|
|||
$this->io->overwrite($msg, false);
|
||||
}
|
||||
|
||||
// strip the release- prefix from tags if present
|
||||
$tag = str_replace('release-', '', $tag);
|
||||
|
||||
if (!$parsedTag = $this->validateTag($tag)) {
|
||||
if ($verbose) {
|
||||
$this->io->write('Skipped tag '.$tag.', invalid tag name');
|
||||
|
|
Loading…
Reference in New Issue