mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
3407a31cf6
* Improving CLI build * Improving CLI build * Remove requirement to build the tools * Moved Electron app one level down * Clean up Electron build * Moved tools to sub-dir * Updated root script * update root * update root * update root * update root * update root * update root * Updated build * Added doc * Update CI config * Should not lint index.js * Fixing jetify * Fixed linter errors * Fixed pod build * Fixed Windows build
38 lines
1.1 KiB
JavaScript
38 lines
1.1 KiB
JavaScript
const { execCommand, githubRelease } = require('./tool-utils.js');
|
|
const path = require('path');
|
|
|
|
const rootDir = path.dirname(__dirname);
|
|
const appDir = `${rootDir}/ElectronClient`;
|
|
|
|
async function main() {
|
|
const argv = require('yargs').argv;
|
|
|
|
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);
|
|
});
|