title | intro | redirect_from | permissions | versions | topics | shortTitle | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Managing releases in a repository |
You can create releases to bundle and deliver iterations of a project to users. |
|
Repository collaborators and people with write access to a repository can create, edit, and delete a release. |
|
|
Manage releases |
You can create new releases with release notes, @mentions of contributors, and links to binary files, as well as edit or delete existing releases. You can also create, modify, and delete releases by using the Releases API. For more information, see AUTOTITLE in the REST API documentation.
{% ifversion fpt or ghec %} You can also publish an action from a specific release in {% data variables.product.prodname_marketplace %}. For more information, see AUTOTITLE.
You can choose whether {% data variables.large_files.product_name_long %} ({% data variables.large_files.product_name_short %}) objects are included in the ZIP files and tarballs that {% data variables.product.github %} creates for each release. For more information, see AUTOTITLE. {% endif %}
{% webui %}
{% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} {% data reusables.releases.create-release %} {% data reusables.releases.previous-release-tag %} {% data reusables.releases.release-title %}
- In the "Describe this release" field, type a description for your release. If you @mention anyone in the description, the published release will include a Contributors section with an avatar list of all the mentioned users. Alternatively, you can automatically generate your release notes by clicking Generate release notes. {% data reusables.releases.finish-release %}
{% endwebui %}
{% cli %}
{% data reusables.cli.cli-learn-more %}
-
To create a release, use the
gh release create
subcommand. Replacetag
with the desired tag for the release.gh release create TAG
-
Follow the interactive prompts. Alternatively, you can specify arguments to skip these prompts. For more information about possible arguments, see the {% data variables.product.prodname_cli %} manual. For example, this command creates a prerelease with the specified title and notes.
gh release create v1.3.2 --title "v1.3.2 (beta)" --notes "this is a {% data variables.release-phases.public_preview %} release" --prerelease
If you @mention any {% data variables.product.github %} users in the notes, the published release will include a Contributors section with an avatar list of all the mentioned users.
{% endcli %}
{% webui %}
{% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} {% data reusables.releases.edit-release %}
- Edit the details for the release in the form, then click Update release. If you add or remove any @mentions of GitHub users in the description, those users will be added or removed from the avatar list in the Contributors section of the release.
{% endwebui %}
{% cli %}
-
To edit a release, use the
gh release edit
subcommand. ReplaceTAG
with the tag representing the release you wish to edit. For example, to edit the title for a release, use the following code, replacingNEW-TITLE
with the updated title:gh release edit TAG -t "NEW-TITLE"
For more information about possible arguments, see the {% data variables.product.prodname_cli %} manual.
{% endcli %}
{% webui %}
{% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %}
-
On the right side of the page, next to the release you want to delete, click {% octicon "trash" aria-label="Delete" %}.
-
Click Delete this release.
{% endwebui %}
{% cli %}
-
To delete a release, use the
gh release delete
subcommand. Replacetag
with the tag of the release to delete. Use the-y
flag to skip confirmation.gh release delete TAG -y
{% endcli %}