diff --git a/build/ci/drone.yml b/build/ci/drone.yml new file mode 100644 index 0000000..8f43c6b --- /dev/null +++ b/build/ci/drone.yml @@ -0,0 +1,23 @@ +kind: pipeline +name: main + +steps: + - name: compile + image: elixir:1.11 + commands: + - mix local.hex --force + - mix local.rebar --force + - mix deps.get + - mix compile + + - name: docker + image: plugins/docker + settings: + username: + from_secret: docker_username + password: + from_secret: docker_password + repo: papey/confient + build_args: + - REVISION=$$CI_COMMIT + - RELEASE_TAG=$$CI_TAG