Files
actions/github-deploy/Makefile
2019-06-12 23:45:38 -04:00

19 lines
396 B
Makefile

include ../docker.mk
include ../help.mk
include ../shell.mk
.PHONY: clean
clean: ## Clean up after the build process.
.PHONY: lint
lint: shell-lint docker-lint ## Lint all of the files for this Action.
.PHONY: build
build: docker-build ## Build this Action.
.PHONY: test
test: shell-test ## Test the components of this Action.
.PHONY: publish
publish: docker-publish ## Publish this Action.