Skip to content

Commit

Permalink
add tagging make
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminjb committed Nov 17, 2023
1 parent 6106685 commit c40fd9d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,11 @@ prep-release:

prep-release-docs: prep-release cli-docs

tag:
@echo "Tagging and pushing as v$(NEW_VERSION)"
@echo -n "Are you sure? [y/N] " && read ans && [ $${ans:-N} = y ]
git tag "v$(NEW_VERSION)"
git push origin "v$(NEW_VERSION)"
git tag "d$(NEW_VERSION)"
git push origin "d$(NEW_VERSION)"
@echo "Make release from tag "v$(NEW_VERSION)"

0 comments on commit c40fd9d

Please sign in to comment.