mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
17 lines
512 B
Bash
Executable File
17 lines
512 B
Bash
Executable File
#!/bin/bash
|
|
ROOT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
APP_DIR="$ROOT_DIR/app"
|
|
|
|
cd "$APP_DIR"
|
|
VERSION="$(npm version patch)"
|
|
git add -A
|
|
git commit -m "Electron release $VERSION"
|
|
git tag $VERSION
|
|
git push && git push --tags
|
|
|
|
echo ""
|
|
echo "Create a draft release at: https://github.com/laurent22/joplin/releases/tag/$VERSION"
|
|
echo ""
|
|
echo "Then run:"
|
|
echo ""
|
|
echo "git pull && node $APP_DIR/update-readme-download.js && git add -A && git commit -m 'Update website' && git push && git push --tags" |