Files
actions/curl/Makefile
2019-06-14 14:37:35 -04:00

19 lines
374 B
Makefile

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