8 lines
147 B
Makefile
8 lines
147 B
Makefile
BRANCH := $(shell git branch --show-current)
|
|
|
|
dev-deploy:
|
|
git push azure-dev $(BRANCH):master
|
|
|
|
prod-deploy:
|
|
git push azure-prod $(BRANCH):master
|