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
- vers commit — create the commits tags point to
- vers build — build a commit and tag it in one step with
-t - vers run-commit — boot a commit or tag
- vers branch — branch from a commit or tag