Last active
April 12, 2017 21:04
-
-
Save davemo/c0462e8196289e0fb0210ee63ff02962 to your computer and use it in GitHub Desktop.
Revisions
-
davemo revised this gist
Apr 12, 2017 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ VERSION ?= $(shell cat VERSION) .PHONY: help version clean bump release .DEFAULT_GOAL := help -
davemo revised this gist
Apr 12, 2017 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -11,13 +11,13 @@ clean: ## clean artifacts rm -rf build release: bump ## bump the VERSION file, git tags, and push github make push -e VERSION=$(shell cat VERSION) version: cat VERSION bump: script/bump --patch help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' -
davemo created this gist
Apr 12, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ VERSION ?= $(shell cat VERSION) .PHONY: help build version clean bump release tag push container .DEFAULT_GOAL := help build: ## build the app do stuff clean: ## clean artifacts rm -rf build release: bump ## bump the VERSION file, git tags, and push github make push -e VERSION=$(shell cat VERSION) version: cat VERSION bump: script/bump --patch help: @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'