1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Fixed Readme

This commit is contained in:
Laurent Cozic 2018-01-18 22:43:37 +00:00
parent c984c19fee
commit 2551f96149
2 changed files with 7 additions and 7 deletions

View File

@ -25,7 +25,7 @@ Linux | <a href='https://github.com/laurent22/joplin/releases/download/
## Mobile applications
Operating System | Download | Alt. Download
-----------------|---------------------------
-----------------|----------|----------------
Android | <a href='https://play.google.com/store/apps/details?id=net.cozic.joplin&utm_source=GitHub&utm_campaign=README&pcampaignid=MKT-Other-global-all-co-prtnr-py-PartBadge-Mar2515-1'><img alt='Get it on Google Play' height="40px" src='https://raw.githubusercontent.com/laurent22/joplin/master/docs/images/BadgeAndroid.png'/></a> | or [Download APK File](https://github.com/laurent22/joplin/releases/download/android-v0.10.78/joplin-v0.10.78.apk)
iOS | <a href='https://itunes.apple.com/us/app/joplin/id1315599797'><img alt='Get it on the App Store' height="40px" src='https://raw.githubusercontent.com/laurent22/joplin/master/docs/images/BadgeIOS.png'/></a> | -

View File

@ -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',