Skip to content

pipe tag

Synopsis

pipe tag <owner>/<name> [tag]

Description

Manages tags for a Hub pipeline. Without a tag argument, lists all tags. With a tag argument, creates a new tag pointing to HEAD’s content.

Arguments

ArgumentDescription
<owner>/<name>Hub pipeline path
[tag]Tag name to create

Flags

FlagShortDescription
--delete-dDelete the specified tag
--force-fOverwrite an existing tag

Examples

Terminal window
# List all tags
pipe tag myorg/deploy
# Create a new tag
pipe tag myorg/deploy v1.0.0
# Overwrite an existing tag
pipe tag myorg/deploy v1.0.0 --force
# Delete a tag
pipe tag myorg/deploy v1.0.0 --delete

Tag naming rules

  • 1–128 characters
  • Lowercase alphanumeric, hyphens, dots
  • Must start and end with a lowercase letter or digit
  • No consecutive hyphens or dots

See also