mirror of
https://github.com/appium/appium.git
synced 2026-04-29 15:01:27 -05:00
25 lines
712 B
Bash
Executable File
25 lines
712 B
Bash
Executable File
#!/bin/bash
|
|
set +e
|
|
git remote | grep "upstream" >/dev/null
|
|
if [ $? -gt 0 ]; then
|
|
echo "You need to have an 'upstream' remote to pull from / push tags to"
|
|
exit 1
|
|
fi
|
|
git status | grep "nothing to commit (working directory clean)" >/dev/null
|
|
if [ $? -gt 0 ]; then
|
|
echo "Working directory isn't clean, commit/clean then publish"
|
|
exit 1
|
|
fi
|
|
git status | grep "Your branch is ahead" >/dev/null
|
|
if [ $? -eq 0 ]; then
|
|
echo "Your branch isn't in sync with master"
|
|
exit 1
|
|
fi
|
|
set -e
|
|
git pull upstream master
|
|
./reset.sh
|
|
npm publish
|
|
version=$(cat package.json | underscore extract version | sed 's/\"//g')
|
|
git tag -a "v$version" -m "tag appium@$version for npm publish"
|
|
git push --tags upstream master
|