mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-22 10:26:08 -07:00
13 lines
447 B
TypeScript
13 lines
447 B
TypeScript
|
import * as httpm from '@actions/http-client';
|
||
|
|
||
|
export interface GitHubRelease {
|
||
|
id: number;
|
||
|
tag_name: string;
|
||
|
}
|
||
|
|
||
|
export const getRelease = async (version: string): Promise<GitHubRelease | null> => {
|
||
|
const url: string = `https://github.com/upx/upx/releases/${version !== 'latest' ? `v${version}` : version}`;
|
||
|
const http: httpm.HttpClient = new httpm.HttpClient('ghaction-upx');
|
||
|
return (await http.getJson<GitHubRelease>(url)).result;
|
||
|
};
|