Skip to content

Commit

Permalink
Merge pull request #2761 from chrischdi/pr-document-tagging-test-module
Browse files Browse the repository at this point in the history
πŸ“– docs: document tagging the test go module
  • Loading branch information
k8s-ci-robot authored Feb 23, 2024
2 parents 59ab5b0 + 80666b3 commit cd8889a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/release/release-tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,15 @@ From this point forward changes which should land in the release have to be cher
# Export the tag of the release to be cut, e.g.:
export RELEASE_TAG=v1.8.0-beta.0
# Create tags locally
# Warning: The test tag MUST NOT be an annotated tag.
git tag -s -a ${RELEASE_TAG} -m ${RELEASE_TAG}
# Warning: The test tag MUST NOT be an annotated tag.
# Warning: only for >= release-1.9
git tag -s test/${RELEASE_TAG}
# Push tags
# Note: `upstream` must be the remote pointing to `github.com/kubernetes-sigs/cluster-api-provider-vsphere`.
git push upstream ${RELEASE_TAG}
git push upstream test/${RELEASE_TAG}
```

This will automatically trigger:
Expand Down

0 comments on commit cd8889a

Please sign in to comment.