fork-openpgpjs/release.sh

40 lines
596 B
Bash
Executable File

#!/bin/sh
# abort if tests fail
set -e
# go to root
cd `dirname $0`
if [ "$#" -ne 1 ] ; then
echo 'Usage: ./release.sh 0.0.0'
exit 0
fi
# install dependencies
rm npm-shrinkwrap.json
rm -rf node_modules/
npm install
# set version
grunt set_version --release=$1
# build and test
npm test
# shrinkwrap production and dev dependencies
npm shrinkwrap --dev
grunt fix_shrinkwrap
# Add build files to git
sed -i "" '/^dist\/$/d' .gitignore
git add dist/ *.json
git commit -m "Release new version"
git checkout .gitignore
git tag v$1
git push
git push --tag
# publish to npm
npm publish