fix version detecting
This commit is contained in:
Vendored
+13
-10
@@ -2,26 +2,29 @@
|
|||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const core = require("@actions/core");
|
const core = require("@actions/core");
|
||||||
const semver = require("semver");
|
const semver = require("semver");
|
||||||
const tool_cache_1 = require("@actions/tool-cache");
|
|
||||||
const _fs = require("fs");
|
const _fs = require("fs");
|
||||||
const fs = _fs.promises;
|
const fs = _fs.promises;
|
||||||
async function fetchVersions() {
|
async function fetchVersions() {
|
||||||
const file = await tool_cache_1.downloadTool('https://raw.githubusercontent.com/xmake-io/github-action-setup-xmake/data/versions.json');
|
const tags = await (await fetch("https://api.github.com/repos/xmake-io/xmake/git/refs/tags")).json();
|
||||||
const versions = await fs.readFile(file, 'utf-8');
|
return tags.map(({ ref, object: { sha } }) => [ref.slice(11), sha]).reduce((o, [k, v]) => {
|
||||||
return JSON.parse(versions);
|
o[k] = v;
|
||||||
|
return o;
|
||||||
|
}, {});
|
||||||
}
|
}
|
||||||
exports.fetchVersions = fetchVersions;
|
exports.fetchVersions = fetchVersions;
|
||||||
async function selectVersion(version) {
|
async function selectVersion(version) {
|
||||||
version = version || core.getInput('xmake-version') || 'latest';
|
version = version || core.getInput("xmake-version") || "latest";
|
||||||
if (version.toLowerCase() === 'latest')
|
if (version.toLowerCase() === "latest")
|
||||||
version = '';
|
version = "";
|
||||||
version = semver.validRange(version);
|
version = semver.validRange(version);
|
||||||
if (!version)
|
if (!version) {
|
||||||
throw new Error(`Invalid input xmake-version: ${core.getInput('xmake-version')}`);
|
throw new Error(`Invalid input xmake-version: ${core.getInput("xmake-version")}`);
|
||||||
|
}
|
||||||
const versions = await fetchVersions();
|
const versions = await fetchVersions();
|
||||||
const ver = semver.maxSatisfying(Object.keys(versions), version);
|
const ver = semver.maxSatisfying(Object.keys(versions), version);
|
||||||
if (!ver)
|
if (!ver) {
|
||||||
throw new Error(`No matched releases of xmake-version: ${version}`);
|
throw new Error(`No matched releases of xmake-version: ${version}`);
|
||||||
|
}
|
||||||
const sha = versions[ver];
|
const sha = versions[ver];
|
||||||
core.info(`selected xmake v${ver} (commit: ${sha.substr(0, 8)})`);
|
core.info(`selected xmake v${ver} (commit: ${sha.substr(0, 8)})`);
|
||||||
return { version: ver, sha };
|
return { version: ver, sha };
|
||||||
|
|||||||
+45
-21
@@ -1,28 +1,52 @@
|
|||||||
import * as core from '@actions/core'
|
import * as core from "@actions/core";
|
||||||
import * as semver from 'semver'
|
import * as semver from "semver";
|
||||||
import { downloadTool } from '@actions/tool-cache'
|
import { downloadTool } from "@actions/tool-cache";
|
||||||
import * as _fs from 'fs'
|
import * as _fs from "fs";
|
||||||
const fs = _fs.promises
|
const fs = _fs.promises;
|
||||||
|
|
||||||
type VersionMap = { [v: string]: string }
|
type TagItem = {
|
||||||
|
ref: string;
|
||||||
|
node_id: string;
|
||||||
|
url: string;
|
||||||
|
object: {
|
||||||
|
sha: string;
|
||||||
|
type: string;
|
||||||
|
url: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
export async function fetchVersions() {
|
export async function fetchVersions() {
|
||||||
const file = await downloadTool('https://raw.githubusercontent.com/xmake-io/github-action-setup-xmake/data/versions.json')
|
const tags: [TagItem] = await (await fetch(
|
||||||
const versions = await fs.readFile(file, 'utf-8')
|
"https://api.github.com/repos/xmake-io/xmake/git/refs/tags"
|
||||||
return JSON.parse(versions) as VersionMap
|
)).json();
|
||||||
|
return tags.map(({ ref, object: {sha} }) => [ref.slice(11), sha]).reduce(
|
||||||
|
(o, [k, v]) => {
|
||||||
|
o[k] = v;
|
||||||
|
return o;
|
||||||
|
},
|
||||||
|
{} as Record<string, string>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function selectVersion(version?: string) {
|
export async function selectVersion(version?: string) {
|
||||||
version = version || core.getInput('xmake-version') || 'latest'
|
version = version || core.getInput("xmake-version") || "latest";
|
||||||
if (version.toLowerCase() === 'latest') version = ''
|
if (version.toLowerCase() === "latest") version = "";
|
||||||
version = semver.validRange(version)
|
version = semver.validRange(version);
|
||||||
if (!version) throw new Error(`Invalid input xmake-version: ${core.getInput('xmake-version')}`)
|
if (!version) {
|
||||||
|
throw new Error(
|
||||||
const versions = await fetchVersions()
|
`Invalid input xmake-version: ${core.getInput("xmake-version")}`
|
||||||
const ver = semver.maxSatisfying(Object.keys(versions), version)
|
);
|
||||||
if (!ver) throw new Error(`No matched releases of xmake-version: ${version}`)
|
}
|
||||||
|
|
||||||
const sha = versions[ver]
|
const versions = await fetchVersions();
|
||||||
core.info(`selected xmake v${ver} (commit: ${sha.substr(0, 8)})`)
|
const ver = semver.maxSatisfying(Object.keys(versions), version);
|
||||||
return { version: ver, sha }
|
if (!ver) {
|
||||||
|
throw new Error(
|
||||||
|
`No matched releases of xmake-version: ${version}`
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
const sha = versions[ver];
|
||||||
|
core.info(`selected xmake v${ver} (commit: ${sha.substr(0, 8)})`);
|
||||||
|
return { version: ver, sha };
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user