diff --git a/README.md b/README.md index c8f21901cd..645dbd447f 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Linux | Get it on Google Play | or [Download APK File](https://github.com/laurent22/joplin/releases/download/android-v0.10.78/joplin-v0.10.78.apk) iOS | Get it on the App Store | - diff --git a/Tools/release-android.js b/Tools/release-android.js index b032218e79..40dc07607a 100644 --- a/Tools/release-android.js +++ b/Tools/release-android.js @@ -80,11 +80,11 @@ async function main() { readmeContent = readmeContent.replace(/(https:\/\/github.com\/laurent22\/joplin\/releases\/download\/.*?\.apk)/, downloadUrl); await fs.writeFile('README.md', readmeContent); - await execCommand('git add -A'); - await execCommand('git commit -m "Android release v' + version + '"'); - await execCommand('git tag ' + tagName); - await execCommand('git push'); - await execCommand('git push --tags'); + console.info(await execCommand('git add -A')); + console.info(await execCommand('git commit -m "Android release v' + version + '"')); + console.info(await execCommand('git tag ' + tagName)); + console.info(await execCommand('git push')); + console.info(await execCommand('git push --tags')); console.info('Creating GitHub release ' + tagName + '...'); @@ -93,7 +93,7 @@ async function main() { body: JSON.stringify({ tag_name: tagName, name: tagName, - draft: true, + draft: false, }), headers: { 'Content-Type': 'application/json',