method GitOperations.prototype.getLastReleaseTag GitOperations.prototype.getLastReleaseTag(): Promise<string> Get the last release tag. Examples Example 1 const lastTag = await git.getLastReleaseTag(); console.log(lastTag ? `Last release: ${lastTag}` : "No previous releases"); Return Type Promise<string> Last tag matching the configured prefix, or null if none found