Skip to content

Commit

Permalink
Update release script to only continue on success of commands
Browse files Browse the repository at this point in the history
  • Loading branch information
sisou committed Jun 25, 2020
1 parent ca7632e commit f097797
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit f097797

Please sign in to comment.