Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
removed aborts in git chain
Browse files Browse the repository at this point in the history
  • Loading branch information
bengarrett committed Mar 13, 2021
1 parent fd41936 commit eeaf215
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions internal/release.bash
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,8 @@ go generate ./...
git status

git add --verbose ../. &&
git commit -m "$newcmmt" &&
git tag -a $newtag -m "$newcmmt" &&
git push origin $newtag &&
git pull &&
echo "You can now run ./deploy.bash"

# notes
# to delete a local tag
# git tag --delete tagname
# to delete a remote tag
# git push --delete origin tagname
git commit -m "$newcmmt"
git tag -a $newtag -m "$newcmmt"
git push origin $newtag
git pull
echo "You can now run ./deploy.bash"

0 comments on commit eeaf215

Please sign in to comment.