Files
actions/github-deploy/Makefile
Ole Christian Langfjæran 529a438c0b Create deploy status (#5)
* Create a simple status update with curl

* Add some lint and a new entrypoint.sh

* Use key-value rather than json resultfile

* Switch to pure shell

* Remove unused line

* Verbose it

* Correct way of getting deployment-id

* Use json in statusupdate

* string interpolation

* Clean up and lint it

* Rename to github-deploy

* Add licenses and README
2019-01-07 10:22:55 +01:00

18 lines
384 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: ## Test the components of this Action.
.PHONY: publish
publish: docker-publish ## Publish this Action.