Nuxt/scripts/release-publish

15 lines
171 B
Plaintext
Raw Normal View History

2019-04-25 08:43:50 +00:00
#!/bin/bash
set -e
if [ ! "$1" ]; then
echo "Usage $0 [version]"
exit 1
fi
yarn build
./scripts/workspace-run npm publish -q
git tag -a v$1 -m v$1
git push --tags