Update dependency com.airbnb.android:lottie to v6.6.2 #326
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v3 | |
- name: Copy CI gradle.properties | |
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties | |
- name: Set up Google Services | |
run: | | |
touch app/google-services.json | |
echo "${CONTENT// /}" | base64 --decode > app/google-services.json | |
env: | |
CONTENT: ${{ secrets.GOOGLE_SERVICES }} | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: 17 | |
distribution: 'zulu' | |
cache: gradle | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v3 | |
- name: Set up Signing Key | |
run: | | |
touch app/key.jks | |
echo "${KEYSTORE// /}" | base64 --decode > app/key.jks | |
touch keystore.properties | |
echo "${KEYSTORE_PROPERTIES// /}" | base64 --decode > keystore.properties | |
env: | |
KEYSTORE: ${{ secrets.KEYSTORE }} | |
KEYSTORE_PROPERTIES: ${{ secrets.KEYSTORE_PROPERTIES }} | |
- name: Clean | |
run: ./gradlew clean | |
- name: Build | |
run: ./gradlew build |