2022-02-22 01:56:06 +08:00
|
|
|
import fetch from "node-fetch";
|
2022-01-19 00:37:59 +08:00
|
|
|
import { getOctokit, context } from "@actions/github";
|
|
|
|
|
2022-02-22 01:56:06 +08:00
|
|
|
const UPDATE_TAG_NAME = "updater";
|
|
|
|
const UPDATE_JSON_FILE = "update.json";
|
2022-01-19 00:37:59 +08:00
|
|
|
|
|
|
|
/// generate update.json
|
|
|
|
/// upload to update tag's release asset
|
|
|
|
async function resolveRelease() {
|
|
|
|
if (process.env.GITHUB_TOKEN === undefined) {
|
|
|
|
throw new Error("GITHUB_TOKEN is required");
|
|
|
|
}
|
|
|
|
|
2022-02-22 01:56:06 +08:00
|
|
|
const options = { owner: context.repo.owner, repo: context.repo.repo };
|
|
|
|
const github = getOctokit(process.env.GITHUB_TOKEN);
|
|
|
|
|
|
|
|
const { data: tags } = await github.rest.repos.listTags({
|
|
|
|
...options,
|
|
|
|
per_page: 10,
|
|
|
|
page: 1,
|
|
|
|
});
|
|
|
|
|
|
|
|
// get the latest publish tag
|
|
|
|
const tag = tags.find((t) => t.name.startsWith("v"));
|
|
|
|
|
|
|
|
console.log(tag);
|
|
|
|
console.log();
|
|
|
|
|
|
|
|
const { data: latestRelease } = await github.rest.repos.getReleaseByTag({
|
|
|
|
...options,
|
|
|
|
tag: tag.name,
|
|
|
|
});
|
2022-01-19 00:37:59 +08:00
|
|
|
|
|
|
|
const updateData = {
|
2022-02-22 01:56:06 +08:00
|
|
|
name: tag.name,
|
|
|
|
notes: latestRelease.body, // use the release body directly
|
2022-01-19 00:37:59 +08:00
|
|
|
pub_date: new Date().toISOString(),
|
|
|
|
platforms: {
|
2022-02-22 01:56:06 +08:00
|
|
|
win64: { signature: "", url: "" },
|
2022-03-19 10:50:44 +08:00
|
|
|
linux: { signature: "", url: "" },
|
2022-02-22 01:56:06 +08:00
|
|
|
darwin: { signature: "", url: "" },
|
2022-01-19 00:37:59 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-02-22 01:56:06 +08:00
|
|
|
const promises = latestRelease.assets.map(async (asset) => {
|
|
|
|
const { name, browser_download_url } = asset;
|
2022-01-19 00:37:59 +08:00
|
|
|
|
2022-02-22 01:56:06 +08:00
|
|
|
// win64 url
|
|
|
|
if (/\.msi\.zip$/.test(name)) {
|
|
|
|
updateData.platforms.win64.url = browser_download_url;
|
|
|
|
}
|
|
|
|
// win64 signature
|
|
|
|
if (/\.msi\.zip\.sig$/.test(name)) {
|
|
|
|
updateData.platforms.win64.signature = await getSignature(
|
|
|
|
browser_download_url
|
|
|
|
);
|
|
|
|
}
|
2022-03-19 10:50:44 +08:00
|
|
|
|
|
|
|
// darwin url
|
|
|
|
if (/\.app\.tar\.gz$/.test(name)) {
|
|
|
|
updateData.platforms.darwin.url = browser_download_url;
|
|
|
|
}
|
2022-02-22 01:56:06 +08:00
|
|
|
// darwin signature
|
|
|
|
if (/\.app\.tar\.gz\.sig$/.test(name)) {
|
|
|
|
updateData.platforms.darwin.signature = await getSignature(
|
|
|
|
browser_download_url
|
|
|
|
);
|
|
|
|
}
|
2022-03-19 10:50:44 +08:00
|
|
|
|
|
|
|
// linux url
|
|
|
|
if (/\.AppImage\.tar\.gz$/.test(name)) {
|
|
|
|
updateData.platforms.linux.url = browser_download_url;
|
|
|
|
}
|
|
|
|
// linux signature
|
|
|
|
if (/\.AppImage\.tar\.gz\.sig$/.test(name)) {
|
|
|
|
updateData.platforms.linux.signature = await getSignature(
|
|
|
|
browser_download_url
|
|
|
|
);
|
|
|
|
}
|
2022-01-19 00:42:37 +08:00
|
|
|
});
|
2022-02-22 01:56:06 +08:00
|
|
|
|
|
|
|
await Promise.allSettled(promises);
|
|
|
|
console.log(updateData);
|
|
|
|
|
|
|
|
// maybe should test the signature as well
|
|
|
|
const { darwin, win64 } = updateData.platforms;
|
|
|
|
if (!darwin.url) {
|
|
|
|
console.log(`[Error]: failed to parse release for darwin`);
|
|
|
|
delete updateData.platforms.darwin;
|
|
|
|
}
|
|
|
|
if (!win64.url) {
|
|
|
|
console.log(`[Error]: failed to parse release for win64`);
|
|
|
|
delete updateData.platforms.win64;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update the update.json
|
|
|
|
const { data: updateRelease } = await github.rest.repos.getReleaseByTag({
|
|
|
|
...options,
|
|
|
|
tag: UPDATE_TAG_NAME,
|
2022-01-19 00:37:59 +08:00
|
|
|
});
|
|
|
|
|
2022-02-22 01:56:06 +08:00
|
|
|
for (let asset of updateRelease.assets) {
|
|
|
|
if (asset.name === UPDATE_JSON_FILE) {
|
2022-01-19 00:37:59 +08:00
|
|
|
await github.rest.repos.deleteReleaseAsset({
|
2022-02-22 01:56:06 +08:00
|
|
|
...options,
|
2022-01-19 00:37:59 +08:00
|
|
|
asset_id: asset.id,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
await github.rest.repos.uploadReleaseAsset({
|
2022-02-22 01:56:06 +08:00
|
|
|
...options,
|
|
|
|
release_id: updateRelease.id,
|
|
|
|
name: UPDATE_JSON_FILE,
|
2022-01-19 00:37:59 +08:00
|
|
|
data: JSON.stringify(updateData, null, 2),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-02-22 01:56:06 +08:00
|
|
|
// get the signature file content
|
|
|
|
async function getSignature(url) {
|
|
|
|
const response = await fetch(url, {
|
|
|
|
method: "GET",
|
|
|
|
headers: { "Content-Type": "application/octet-stream" },
|
|
|
|
});
|
|
|
|
|
|
|
|
return response.text();
|
|
|
|
}
|
|
|
|
|
|
|
|
resolveRelease().catch(console.error);
|