This repository has been archived on 2021-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
drone-abra/makefile

19 lines
316 B
Makefile

.PHONY: build push shellcheck
shellcheck:
@docker run \
-it \
--rm \
-v $$(pwd):/workdir \
koalaman/shellcheck-alpine \
shellcheck /workdir/plugin.sh
build:
@cd ~/.abra/src && \
make push && \
cd - && \
docker build -t thecoopcloud/drone-abra .
push: build
@docker push thecoopcloud/drone-abra