Skip to main content
vers tag is Vers’ analogue of git tag: a human-readable name pointing to a commit. Tags are mutable (you can move them with tag update) and cheap (deleting a tag doesn’t touch the commit it points to). vers build -t, vers run-commit, and vers build’s FROM clause all accept tag names anywhere a commit id is expected.

Synopsis

Subcommands

vers tag create

Create a tag pointing to a commit.
Naming rules: alphanumeric characters plus -, _, .; 1–64 characters.

vers tag list

List all tags in your organization.

vers tag get

Show details for a single tag.

vers tag update

Move a tag or update its description. At least one of --commit or --description is required.

vers tag delete

Delete one or more tags. Commits they pointed at are unaffected.

Examples

Name your build outputs

Promote through environments

Branch off a named tag

Common Patterns

Tag the latest build

Promote through environments

Delete all test tags

Pin a release

See also