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
Raw Normal View History

2021-07-04 20:09:10 +00:00
.PHONY: build push shellcheck
shellcheck:
@docker run \
-it \
--rm \
-v $$(pwd):/workdir \
koalaman/shellcheck-alpine \
shellcheck /workdir/plugin.sh
2021-06-03 19:09:31 +00:00
build:
2021-06-03 20:36:40 +00:00
@cd ~/.abra/src && \
make push && \
cd - && \
2021-06-17 19:04:40 +00:00
docker build -t thecoopcloud/drone-abra .
2021-06-03 19:09:31 +00:00
push: build
2021-06-17 19:04:40 +00:00
@docker push thecoopcloud/drone-abra