Browse Source

refactor: change target name on makefile

danilo silva 3 years ago
parent
commit
ba34c0234b
2 changed files with 11 additions and 3 deletions
  1. 2 0
      .gitignore
  2. 9 3
      Makefile

+ 2 - 0
.gitignore

@@ -34,3 +34,5 @@ npm-debug.log
 /priv/static/
 rel/
 metadata.json
+
+deploy.sh

+ 9 - 3
Makefile

@@ -7,7 +7,7 @@ start: up install-deps 	## Start openpod application
 	docker-compose exec open-pod iex -S mix phx.server
 
 .PHONY: install-deps
-install-deps: container/open-pod	## Install worms dependencies
+install-deps: container/open-pod	## Install open-pod dependencies
 	docker-compose exec open-pod mix deps.get
 
 .PHONY: stop
@@ -21,13 +21,19 @@ help:
 container/%:
 	@docker ps -q --no-trunc --filter status=running | grep $$(docker-compose ps -q $*) >/dev/null 2>&1 || docker-compose up -d $*
 
-.PHONY: build_and_publish
-build_and_publish: check-version
+.PHONY: build
+build: check-version
 	@docker build -t openpod/open-pod:latest .
 	@docker push openpod/open-pod:latest
 	@docker build -t openpod/open-pod:${VERSION} .
+
+.PHONY: publish
+publish: check-version
 	@docker push openpod/open-pod:${VERSION}
 
+.PHONY: build-publish
+build-publish: check-version build publish
+
 check-version:
 ifndef VERSION
 	$(error VERSION is undefined)