Liip\RMT\VCS\Git::publishTag PHP Method

publishTag() public method

public publishTag ( $tagName, $remote = null )
    public function publishTag($tagName, $remote = null)
    {
        $remote = $remote == null ? 'origin' : $remote;
        $this->executeGitCommand("push {$remote} {$tagName}");
    }