cut-release-tag
Installation
SKILL.md
Cut Release Tag
Create an annotated semver tag on origin/main HEAD, move the latest floating tag, and push both.
Prerequisites
- You must be in the NemoClaw git repository.
- You must have push access to
origin(NVIDIA/NemoClaw). - The nightly E2E suite should have passed before tagging. Check with the user if unsure.
Step 1: Determine the Current Version
Fetch all tags and find the latest semver tag:
git fetch origin --tags
git tag --sort=-v:refname | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' | head -1