mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
15 lines
171 B
Bash
Executable File
15 lines
171 B
Bash
Executable File
#!/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
|