(repoUrl: string)
| 96 | |
| 97 | /** @deprecated Use getLatestReleaseTag for the GitHub "Latest" release; this returns an arbitrary tag from git ls-remote. */ |
| 98 | export async function resolveLatestReleaseRef(repoUrl: string): Promise<string> { |
| 99 | const tag = await getLatestReleaseTagFromGit(repoUrl); |
| 100 | // Template expects either ref (refs/tags/X) or tag name for archive URL; we use tag name. |
| 101 | return tag; |
| 102 | } |
nothing calls this directly
no test coverage detected