Ensures the image version is a valid semantic version of the form {prefix}MAJOR.MINOR.PATCH.
The construct scope for error annotations
The version string to validate
The prefix before semver (default: 'v'). Examples: 'v', 'backend-v'
// Default prefix 'v' - validates v1.2.3validateReleaseTag(this, imageVersion);// Custom prefix - validates backend-v1.2.3validateReleaseTag(this, imageVersion, 'backend-v'); Copy
// Default prefix 'v' - validates v1.2.3validateReleaseTag(this, imageVersion);// Custom prefix - validates backend-v1.2.3validateReleaseTag(this, imageVersion, 'backend-v');
Ensures the image version is a valid semantic version of the form {prefix}MAJOR.MINOR.PATCH.