mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
14 lines
385 B
Bash
Executable File
14 lines
385 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 "Create a draft release at: https://github.com/laurent22/joplin/releases/tag/$VERSION"
|
|
|
|
node "$APP_DIR/update-readme-download.js" $VERSION |