Given that a 'GitHub' user is configured, with the appropriate
permissions, this function pushes the current branch (if safe),
then publishes a 'GitHub' Release of the repository indicated by
repo
to that user's account.
Arguments
- repo
The path to the 'Git' repository.
- tag_name
Optional character string to specify the tag name. By default, this is set to
NULL
andgit_release_publish()
uses version numbers starting with0.1.0
for both thetag_name
andrelease_name
arguments. Override this behavior, for example, to increment the major version number by specifying0.2.0
.- release_name
Optional character string to specify the tag name. By default, this is set to
NULL
andgit_release_publish()
uses version numbers starting with0.1.0
for both thetag_name
andrelease_name
arguments. Override this behavior, for example, to increment the major version number by specifying0.2.0
.