mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
15 lines
180 B
Bash
Executable File
15 lines
180 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 --tag 2x -q
|
|
|
|
git tag -a v$1 -m v$1
|
|
git push --tags
|