Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 659 Bytes

README.md

File metadata and controls

30 lines (23 loc) · 659 Bytes

CI/CD for Android apps on GitLab

Docker Pulls Docker Automated Docker Build

Sample usages

GitLab

.gitlab-ci.yml

image: hantrungkien/android-ci-cd-fastlane:latest

cache:
  key: ${CI_PROJECT_ID}
  paths:
    - .gradle/

before_script:
  - export GRADLE_USER_HOME=$(pwd)/.gradle
  - chmod +x ./gradlew

stages:
  - deploy

deploy:
  stage: deploy
  script:
     - fastlane distribute