Skip to content

chore(deps): bump com.android.application from 8.6.0 to 8.6.1 #621

chore(deps): bump com.android.application from 8.6.0 to 8.6.1

chore(deps): bump com.android.application from 8.6.0 to 8.6.1 #621

Workflow file for this run

# Builds the project and uploads a debug APK
name: Android PR CI
on:
pull_request:
branches:
- 'main'
workflow_dispatch:
jobs:
build:
name: Build, Sign & Upload
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: set up JDK 17
uses: actions/[email protected]
with:
java-version: '17'
distribution: 'temurin'
cache: gradle
- uses: actions/[email protected]
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew clean && ./gradlew assembleDebug
- name: Upload Artifact
uses: actions/[email protected]
with:
name: Signed app bundle
path: app/build/outputs/apk/debug/*.apk
retention-days: 3