update badges
This commit is contained in:
parent
4b1c7027fd
commit
1698c1c56f
|
@ -0,0 +1,6 @@
|
||||||
|
[bumpversion]
|
||||||
|
commit = True
|
||||||
|
current_version = 1.3.0
|
||||||
|
tag = True
|
||||||
|
tag_name = {new_version}
|
||||||
|
|
18
Makefile
18
Makefile
|
@ -1,6 +1,20 @@
|
||||||
.PHONY: release
|
.PHONY: release major minor patch
|
||||||
|
|
||||||
|
VERSION?=minor
|
||||||
release:
|
release:
|
||||||
@git flow release finish `git flow release | cut -d ' ' -f2`
|
@bumpversion $(VERSION)
|
||||||
|
@git checkout master
|
||||||
|
@git merge develop
|
||||||
|
@git checkout develop
|
||||||
@git push --all
|
@git push --all
|
||||||
@git push --tags
|
@git push --tags
|
||||||
@git checkout develop
|
@git checkout develop
|
||||||
|
|
||||||
|
major:
|
||||||
|
make release VERSION=major
|
||||||
|
|
||||||
|
minor:
|
||||||
|
make release VERSION=minor
|
||||||
|
|
||||||
|
patch:
|
||||||
|
make release VERSION=patch
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
Stouts.mongo
|
Stouts.mongo
|
||||||
============
|
============
|
||||||
|
|
||||||
[![Build Status](https://travis-ci.org/Stouts/Stouts.nginx.png)](https://travis-ci.org/Stouts/Stouts.mongodb)
|
[![Build Status](http://img.shields.io/travis/Stouts/Stouts.mongodb.svg?style=flat-square)](https://travis-ci.org/Stouts/Stouts.mongodb)
|
||||||
|
[![Galaxy](http://img.shields.io/badge/galaxy-Stouts.mongodb-blue.svg?style=flat-square)](https://galaxy.mongodb.com/list#/roles/982)
|
||||||
|
[![Tag](http://img.shields.io/github/tag/Stouts/Stouts.mongodb.svg?style=flat-square)]()
|
||||||
|
|
||||||
Ansible role which manage [MongoDB](http://www.mongodb.org/)
|
Ansible role which manage [MongoDB](http://www.mongodb.org/)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue