2022-12-22 14:47:47 +01:00

44 lines
908 B
JavaScript
Executable File

#!/usr/bin/env node
// Node.js v10+ only
'use strict';
require('essentials');
const argv = require('../../../lib/cli/parse-args')(process.argv.slice(2), {
boolean: new Set(['help', 'legacy']),
alias: new Map([['h', 'help']]),
});
const [versionTag] = argv._;
const usage = `Usage: ./scripts/pkg/upload.js [-h | --help] <versionTag>
Uploads binary files found in ./dist folder into GitHub release.
Github OAuth token is expected to be exposed at GITHUB_TOKEN env var
Options:
--help, -h Show this message
`;
if (argv.help) {
process.stdout.write(usage);
return;
}
if (!versionTag) {
process.stdout.write(usage);
return;
}
if (!/^v\d+\.\d+\.\d+$/.test(versionTag)) {
const chalk = require('chalk');
process.stdout.write(chalk.red(`Invalid version tag: ${versionTag}\n`));
process.exitCode = 1;
return;
}
require('./world')(versionTag, { isLegacyVersion: argv.legacy });