代码拉取完成,页面将自动刷新
const { execCommand, githubRelease, handleCommitHook, githubOauthToken } = require('./tool-utils.js');
const path = require('path');
const rootDir = path.dirname(__dirname);
const appDir = rootDir + '/ElectronClient/app';
async function main() {
const argv = require('yargs').argv;
const oauthToken = await githubOauthToken();
process.chdir(appDir);
console.info('Running from: ' + process.cwd());
const version = (await execCommand('npm version patch')).trim();
const tagName = version;
console.info('New version number: ' + version);
console.info(await execCommand('git add -A'));
console.info(await execCommand('git commit -m "Electron release ' + version + '"'));
console.info(await execCommand('git tag ' + tagName));
console.info(await execCommand('git push && git push --tags'));
const releaseOptions = { isDraft: true, isPreRelease: !!argv.beta };
console.info('Release options: ', releaseOptions);
const release = await githubRelease('joplin', tagName, releaseOptions);
console.info('Created GitHub release: ' + release.html_url);
}
main().catch((error) => {
console.error('Fatal error');
console.error(error);
process.exit(1);
});
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。