Skip to content

chore(deps): bump androidx.navigation:navigation-ui-ktx #676

chore(deps): bump androidx.navigation:navigation-ui-ktx

chore(deps): bump androidx.navigation:navigation-ui-ktx #676

# Builds the project
name: Android Feature Branch CI
on:
push:
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