mirror of
https://github.com/zhigang1992/actions.git
synced 2026-01-12 22:45:39 +08:00
19 lines
374 B
Makefile
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.
|