Skip to content
box

GitHub Action

android-ci-github-action

v0.1.0 Pre-release

android-ci-github-action

box

android-ci-github-action

A github action for image for building Android apps with support for multiple SDK Build Tools

Installation

Copy and paste the following snippet into your .yml file.

              

- name: android-ci-github-action

uses: Code0987/android-ci-github-action@v0.1.0

Learn more about this action in Code0987/android-ci-github-action

Choose a version

Android CI Github Action

A Github action of image for building Android apps with support for multiple SDK Build Tools. This Docker image contains the Android SDK and most common packages necessary for building Android apps in a CI tool.

More details code0987/android-ci.

Usage and example

name: Android CI

on: [push]

jobs:

  android-ci:
    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1

    - name: "Android CI Github Action"
      uses: code0987/android-ci-github-action@master
      with:
        args: |
          npm install
          export GRADLE_USER_HOME=`pwd`./src/.gradle
          chmod 755 ./src/gradlew 
          ./src/gradlew -p ./src check