Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 99bb5165 authored by Jonathan Klee's avatar Jonathan Klee
Browse files

Add gitlab-ci file

parent 5787f740
Loading
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+20 −0
Original line number Diff line number Diff line
image: "registry.gitlab.e.foundation/e/os/docker-android-apps-cicd:latest"

stages:
- build
- deploy

build-job:
  stage: build
  script:
    - gradle build
  artifacts:
    paths:
      - build/libs

deploy:
  stage: deploy
  script:
    - gradle publish
  only:
    - master