mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-04-05 23:25:19 -04:00
remove download-latest.ts
Co-authored-by: Kevin Stillhammer <kevin.stillhammer@gmail.com>
This commit is contained in:
parent
d59153e3d6
commit
4e30929618
1 changed files with 0 additions and 16 deletions
|
@ -1,16 +0,0 @@
|
|||
import { OWNER, REPO } from "../utils/constants";
|
||||
import * as github from "@actions/github";
|
||||
|
||||
export async function getLatestVersion(githubToken: string) {
|
||||
const octokit = github.getOctokit(githubToken);
|
||||
|
||||
const { data: latestRelease } = await octokit.rest.repos.getLatestRelease({
|
||||
owner: OWNER,
|
||||
repo: REPO,
|
||||
});
|
||||
|
||||
if (!latestRelease) {
|
||||
throw new Error("Could not determine latest release.");
|
||||
}
|
||||
return latestRelease.tag_name;
|
||||
}
|
Loading…
Add table
Reference in a new issue