copia-cli release create

copia-cli release create <tag> [flags]

Create a new release for a Copia repository. A tag name is required. Use –draft or –prerelease to control release visibility.

Options

--draft
Create as draft
-n, --notes <string>
Release notes
--prerelease
Mark as pre-release
-t, --title <string>
Release title

Options inherited from parent commands

--host <string>
Target Copia host
-R, --repo <string>
Select repository (owner/repo)
--token <string>
Authentication token

Examples

  # Create a release
  $ copia-cli release create v1.0.0 --title "Release 1.0.0" --notes "Changelog here"

  # Create a draft prerelease
  $ copia-cli release create v2.0.0-rc.1 --draft --prerelease

See also