Skip to content

Latest commit

 

History

History
112 lines (79 loc) · 4.98 KB

managing-releases-in-a-repository.md

File metadata and controls

112 lines (79 loc) · 4.98 KB
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.
/articles/creating-releases
/articles/listing-and-editing-releases
/articles/editing-and-deleting-releases
/articles/managing-releases-in-a-repository
/github/administering-a-repository/creating-releases
/github/administering-a-repository/editing-and-deleting-releases
/github/administering-a-repository/managing-releases-in-a-repository
/github/administering-a-repository/releasing-projects-on-github/managing-releases-in-a-repository
Repository collaborators and people with write access to a repository can create, edit, and delete a release.
fpt ghes ghec
*
*
*
Repositories
Manage releases

About release management

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 %}

Creating a release

{% 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 %}

  1. 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 %}

  1. To create a release, use the gh release create subcommand. Replace tag with the desired tag for the release.

    gh release create TAG
  2. 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 %}

Editing a release

{% webui %}

{% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %} {% data reusables.releases.edit-release %}

  1. 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 %}

  1. To edit a release, use the gh release edit subcommand. Replace TAG with the tag representing the release you wish to edit. For example, to edit the title for a release, use the following code, replacing NEW-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 %}

Deleting a release

{% webui %}

{% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.releases %}

  1. On the right side of the page, next to the release you want to delete, click {% octicon "trash" aria-label="Delete" %}.

    Screenshot of a release in the releases list. A trash icon is highlighted with an orange outline.

  2. Click Delete this release.

{% endwebui %}

{% cli %}

  1. To delete a release, use the gh release delete subcommand. Replace tag with the tag of the release to delete. Use the -y flag to skip confirmation.

    gh release delete TAG -y

{% endcli %}