HTTP/2 200
server: GitHub.com
content-type: text/html; charset=utf-8
last-modified: Thu, 18 Dec 2025 15:43:45 GMT
access-control-allow-origin: *
etag: W/"69442131-16de5"
expires: Sun, 28 Dec 2025 22:03:28 GMT
cache-control: max-age=600
content-encoding: gzip
x-proxy-cache: MISS
x-github-request-id: 16FA:2916CC:812E77:90E51B:6951A6D7
accept-ranges: bytes
age: 0
date: Sun, 28 Dec 2025 21:53:28 GMT
via: 1.1 varnish
x-served-by: cache-bom-vanm7210074-BOM
x-cache: MISS
x-cache-hits: 0
x-timer: S1766958808.080946,VS0,VE205
vary: Accept-Encoding
x-fastly-request-id: 94fed98c06a293242f4e911def1ada59af4209fd
content-length: 10067
GitHub CLI | Take GitHub to the command line
CLI manual
gh release edit
Edit a release
gh release edit <tag>
Options
--discussion-category <string>
Start a discussion in the specified category when publishing a draft
--draft
Save the release as a draft instead of publishing it
--latest
Explicitly mark the release as "Latest"
-n,
--notes <string>
Release notes
-F,
--notes-file <file>
Read release notes from file (use "-" to read from standard input)
--prerelease
Mark the release as a prerelease
--tag <string>
The name of the tag
--target <branch>
Target branch or full commit SHA (default [main branch])
-t,
--title <string>
Release title
--verify-tag
Abort in case the git tag doesn't already exist in the remote repository
Options inherited from parent commands
-R,
--repo <[HOST/]OWNER/REPO>
Select another repository using the [HOST/]OWNER/REPO format
Examples
# Publish a release that was previously a draft$ gh release edit v1.0 --draft=false# Update the release notes from the content of a file$ gh release edit v1.0 --notes-file /path/to/release_notes.md