mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
24 lines
510 B
Bash
Executable File
24 lines
510 B
Bash
Executable File
#!/bin/bash
|
|
cd "$(dirname "$0")"
|
|
|
|
if ! git diff-index --quiet HEAD
|
|
then
|
|
echo "Please clean git before publishing."
|
|
exit
|
|
fi
|
|
|
|
# bump npm version
|
|
VERSION=$(./npm version "${1-patch}" --no-git-tag-version)
|
|
if [ $? -ne 0 ]; then
|
|
echo "Npm version bump failed."
|
|
exit
|
|
fi
|
|
|
|
VERSION=$(echo "$VERSION" | head -1 | cut -c 2- | tr -d '\r')
|
|
echo "New version is: $VERSION"
|
|
|
|
git add ../package*
|
|
git commit -m "version ${VERSION}"
|
|
git tag -a "v${VERSION}" -m "version ${VERSION}"
|
|
git push origin "v${VERSION}"
|