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.
Creating a release
- 
On your GitHub Enterprise Server instance, navigate to the main page of the repository. 
- 
À direita da lista de arquivos, clique em Versões.  
- 
Click Draft a new release.  
- 
Type a version number for your release. Alternatively, select an existing tag.  
- 
If you have created a new tag, use the drop-down menu to select the branch that contains the project you want to release.  
- 
Type a title and description for your release.  
- 
Optionally, to include binary files such as compiled programs in your release, drag and drop or manually select files in the binaries box.  
- 
To notify users that the release is not ready for production and may be unstable, select This is a pre-release.  
- 
If you're ready to publicize your release, click Publish release. To work on the release later, click Save draft.  
Para saber mais sobre a GitHub CLI, confira "Sobre a GitHub CLI".
- 
To create a release, use the gh release createsubcommand. Replacetagwith 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 GitHub 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 beta release" --prerelease
Editing a release
- 
On your GitHub Enterprise Server instance, navigate to the main page of the repository. 
- 
À direita da lista de arquivos, clique em Versões.  
- 
On the right side of the page, next to the release you want to edit, click Edit release.  
- 
Edit the details for the release in the form, then click Update release.  
Releases cannot currently be edited with GitHub CLI.
Deleting a release
- 
On your GitHub Enterprise Server instance, navigate to the main page of the repository. 
- 
À direita da lista de arquivos, clique em Versões.  
- 
Click the name of the release you wish to delete.  
- 
In the upper-right corner of the page, click Delete.  
- 
Click Delete this release.  
- 
To delete a release, use the gh release deletesubcommand. Replacetagwith the tag of the release to delete. Use the-yflag to skip confirmation.gh release delete TAG -y