I am committing and pushing a project into remote using a Cake Build task:
GitAddAll(".");
GitCommit(".", authorName, authorEmail, message);
GitTag(".", version);
GitPush(".", username, password, "master);
The files are being committed to local repository and pushed to remote.
And the tag is being created in local repository but is not being created in remote.
How can I create the tag in remote repository, e.g. Github?