mirror of
https://github.com/laurent22/joplin.git
synced 2026-06-18 20:16:34 +02:00
+14
-14
@@ -1,31 +1,31 @@
|
||||
const { execCommand, githubRelease, handleCommitHook, githubOauthToken } = require("./tool-utils.js");
|
||||
const path = require("path");
|
||||
const { execCommand, githubRelease, handleCommitHook, githubOauthToken } = require('./tool-utils.js');
|
||||
const path = require('path');
|
||||
|
||||
const rootDir = path.dirname(__dirname);
|
||||
const appDir = rootDir + "/ElectronClient/app";
|
||||
const appDir = rootDir + '/ElectronClient/app';
|
||||
|
||||
async function main() {
|
||||
const oauthToken = await githubOauthToken();
|
||||
process.chdir(appDir);
|
||||
|
||||
console.info("Running from: " + process.cwd());
|
||||
console.info('Running from: ' + process.cwd());
|
||||
|
||||
const version = (await execCommand("npm version patch")).trim();
|
||||
const version = (await execCommand('npm version patch')).trim();
|
||||
const tagName = version;
|
||||
|
||||
console.info("New version number: " + version);
|
||||
console.info('New version number: ' + version);
|
||||
|
||||
console.info(await execCommand("git add -A"));
|
||||
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"));
|
||||
console.info(await execCommand('git tag ' + tagName));
|
||||
console.info(await execCommand('git push && git push --tags'));
|
||||
|
||||
const release = await githubRelease("joplin", tagName, true);
|
||||
const release = await githubRelease('joplin', tagName, true);
|
||||
|
||||
console.info("Created GitHub release: " + release.html_url);
|
||||
console.info('Created GitHub release: ' + release.html_url);
|
||||
}
|
||||
|
||||
main().catch(error => {
|
||||
console.error("Fatal error");
|
||||
main().catch((error) => {
|
||||
console.error('Fatal error');
|
||||
console.error(error);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user