Skip to content

Stop using the custom domain as the dependency name #19

Stop using the custom domain as the dependency name

Stop using the custom domain as the dependency name #19

Workflow file for this run

name: Android CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2.3.4
- name: Setup Java JDK
uses: actions/setup-java@v1.4.3
with:
java-version: 1.8
# https://github.com/actions/cache/blob/master/examples.md#java---gradle
- name: Cache
uses: actions/cache@v2.1.4
id: cache
with:
path: |
~/.m2
~/.gradle/caches
~/.gradle/wrapper/
~/.android/build-cache
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build with Gradle
run: ./gradlew clean build