diff --git a/release.sh b/release.sh index 4779f2f82..3c6483f99 100755 --- a/release.sh +++ b/release.sh @@ -17,13 +17,13 @@ if [[ `git status --porcelain` ]]; then fi # Build Vue app -yarn build +yarn build && # Tag current commit -git tag $1 +git tag $1 && # Push commit and tag to origin -git push && git push --tags +git push && git push --tags && # Done echo "FINISHED - The app was built into the ./dist folder"