Skip to content

fix(deps): update dependency com.squareup.leakcanary:leakcanary-android to v2.12 #325

fix(deps): update dependency com.squareup.leakcanary:leakcanary-android to v2.12

fix(deps): update dependency com.squareup.leakcanary:leakcanary-android to v2.12 #325

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Build
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
pull_request:
branches: [ "master" ]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checkout
uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '17'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Access GOOGLE_SERVICES_JSON
run: echo '${{ secrets.GOOGLE_SERVICES_JSON }}' > ./app/google-services.json
- name: Generate jks file from base64
uses: timheuer/base64-to-file@v1.2
with:
fileName: 'croissant_key_store.jks'
fileDir: './'
encodedString: ${{ secrets.SIGNING_KEY }}
- name: Build with Gradle
run: ./gradlew clean build --no-daemon --parallel build
env:
ALIAS: ${{ secrets.ALIAS }}
KEY_PASSWORD: ${{ secrets.KEY_PASSWORD }}
KEY_STORE_PASSWORD: ${{ secrets.KEY_STORE_PASSWORD }}