mirror of
https://github.com/status-im/ansible-role-mongodb.git
synced 2025-01-09 21:15:44 +00:00
21 lines
315 B
Makefile
21 lines
315 B
Makefile
.PHONY: release major minor patch
|
|
|
|
VERSION?=minor
|
|
release:
|
|
@bumpversion $(VERSION)
|
|
@git checkout master
|
|
@git merge develop
|
|
@git checkout develop
|
|
@git push --all
|
|
@git push --tags
|
|
@git checkout develop
|
|
|
|
major:
|
|
make release VERSION=major
|
|
|
|
minor:
|
|
make release VERSION=minor
|
|
|
|
patch:
|
|
make release VERSION=patch
|