.nh .TH "GH-RELEASE-DOWNLOAD" "1" "Mar 2024" "" "GitHub CLI manual" .SH NAME .PP gh-release-download - Download release assets .SH SYNOPSIS .PP \fBgh release download [] [flags]\fR .SH DESCRIPTION .PP Download assets from a GitHub release. .PP Without an explicit tag name argument, assets are downloaded from the latest release in the project. In this case, \fB--pattern\fR or \fB--archive\fR is required. .SH OPTIONS .TP \fB-A\fR, \fB--archive\fR \fB\fR Download the source code archive in the specified format (zip or tar.gz) .TP \fB--clobber\fR Overwrite existing files of the same name .TP \fB-D\fR, \fB--dir\fR \fB (default ".")\fR The directory to download files into .TP \fB-O\fR, \fB--output\fR \fB\fR The file to write a single asset to (use "-" to write to standard output) .TP \fB-p\fR, \fB--pattern\fR \fB\fR Download only assets that match a glob pattern .TP \fB--skip-existing\fR Skip downloading when files of the same name exist .SH OPTIONS INHERITED FROM PARENT COMMANDS .TP \fB-R\fR, \fB--repo\fR \fB<[HOST/]OWNER/REPO>\fR Select another repository using the [HOST/]OWNER/REPO format .SH EXAMPLE .EX # download all assets from a specific release $ gh release download v1.2.3 # download only Debian packages for the latest release $ gh release download --pattern '*.deb' # specify multiple file patterns $ gh release download -p '*.deb' -p '*.rpm' # download the archive of the source code for a release $ gh release download v1.2.3 --archive=zip .EE .SH SEE ALSO .PP \fBgh-release(1)\fR