Merge pull request #1 from codehz/master

fix version detection
This commit is contained in:
ruki
2020-03-20 16:59:26 +08:00
committed by GitHub
Unverified
3 changed files with 58 additions and 30 deletions
+14 -9
View File
@@ -6,22 +6,27 @@ const tool_cache_1 = require("@actions/tool-cache");
const _fs = require("fs");
const fs = _fs.promises;
async function fetchVersions() {
const file = await tool_cache_1.downloadTool('https://raw.githubusercontent.com/xmake-io/github-action-setup-xmake/data/versions.json');
const versions = await fs.readFile(file, 'utf-8');
return JSON.parse(versions);
const file = await tool_cache_1.downloadTool("https://api.github.com/repos/xmake-io/xmake/git/refs/tags");
const tags = JSON.parse(await fs.readFile(file, { encoding: "utf-8" }));
return tags.map(({ ref, object: { sha } }) => [ref.slice(11), sha]).reduce((o, [k, v]) => {
o[k] = v;
return o;
}, {});
}
exports.fetchVersions = fetchVersions;
async function selectVersion(version) {
version = version || core.getInput('xmake-version') || 'latest';
if (version.toLowerCase() === 'latest')
version = '';
version = version || core.getInput("xmake-version") || "latest";
if (version.toLowerCase() === "latest")
version = "";
version = semver.validRange(version);
if (!version)
throw new Error(`Invalid input xmake-version: ${core.getInput('xmake-version')}`);
if (!version) {
throw new Error(`Invalid input xmake-version: ${core.getInput("xmake-version")}`);
}
const versions = await fetchVersions();
const ver = semver.maxSatisfying(Object.keys(versions), version);
if (!ver)
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 };
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "github-action-setup-xmake",
"version": "1.0.0",
"version": "1.0.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+42 -19
View File
@@ -1,28 +1,51 @@
import * as core from '@actions/core'
import * as semver from 'semver'
import { downloadTool } from '@actions/tool-cache'
import * as _fs from 'fs'
const fs = _fs.promises
import * as core from "@actions/core";
import * as semver from "semver";
import { downloadTool } from "@actions/tool-cache";
import * as _fs from "fs";
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() {
const file = await downloadTool('https://raw.githubusercontent.com/xmake-io/github-action-setup-xmake/data/versions.json')
const versions = await fs.readFile(file, 'utf-8')
return JSON.parse(versions) as VersionMap
const file = await downloadTool("https://api.github.com/repos/xmake-io/xmake/git/refs/tags");
const tags: [TagItem] = JSON.parse(await fs.readFile(file, { encoding: "utf-8" }));
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) {
version = version || core.getInput('xmake-version') || 'latest'
if (version.toLowerCase() === 'latest') version = ''
version = semver.validRange(version)
if (!version) throw new Error(`Invalid input xmake-version: ${core.getInput('xmake-version')}`)
version = version || core.getInput("xmake-version") || "latest";
if (version.toLowerCase() === "latest") version = "";
version = semver.validRange(version);
if (!version) {
throw new Error(
`Invalid input xmake-version: ${core.getInput("xmake-version")}`
);
}
const versions = await fetchVersions()
const ver = semver.maxSatisfying(Object.keys(versions), version)
if (!ver) throw new Error(`No matched releases of xmake-version: ${version}`)
const versions = await fetchVersions();
const ver = semver.maxSatisfying(Object.keys(versions), version);
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 }
const sha = versions[ver];
core.info(`selected xmake v${ver} (commit: ${sha.substr(0, 8)})`);
return { version: ver, sha };
}