Galleries
Galleries
An ordered set of media behind one public link, linkable to a pull request or issue.
What a gallery is #
A gallery is an ordered set of media behind one public link. You get a durable URL that stays current as you add shots, instead of scattering individual file links. Each gallery has a public share page at /g/<id>.
CLI workflow #
Create a gallery, then add files to it as you capture them:
uploads gallery create --title "Release screenshots" # returns a gallery id
uploads put ./shot.png --gallery <id> # add a file to the gallery
The create command prints a gallery id. Pass that id to --gallery on later uploads. The public page at /g/<id> updates as items are added.
Link to a PR or issue #
Linking a gallery to a pull request or issue keeps the public link associated with that work. It is metadata only — the gallery stays public at the same /g/<id> URL.
uploads gallery link <id> --github owner/repo#123 # associate with a PR or issue