[Android]: Bump androidx.navigation:navigation-compose from 2.6.0 to 2.8.4 in /noty-android #1308
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 (Android) | |
on: | |
push: | |
paths: | |
- 'noty-android/**' | |
pull_request: | |
paths: | |
- 'noty-android/**' | |
jobs: | |
build: | |
name: Build Android | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Cache Gradle and wrapper | |
uses: actions/cache@v2 | |
with: | |
path: | | |
~/.gradle/caches | |
~/.gradle/wrapper | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | |
restore-keys: | | |
${{ runner.os }}-gradle- | |
- name: Grant Permission to Execute | |
run: chmod +x gradlew | |
working-directory: noty-android | |
- name: 🏗 Build with Gradle 🛠️ | |
run: ./gradlew build --stacktrace | |
working-directory: noty-android | |
- name: 🚀 Upload APK 📱 | |
uses: actions/upload-artifact@v2 | |
with: | |
name: app | |
path: noty-android/**/*.apk | |
retention-days: 3 | |
- name: 📊 Generate compose compiler report ️ | |
if: github.event_name == 'push' | |
run: ./gradlew releaseComposeCompilerHtmlReport --stacktrace | |
working-directory: noty-android | |
- name: ⬆️ Update compose compiler report ️in the project | |
if: github.event_name == 'push' | |
run: | | |
mv -f noty-android/app/composeapp/build/compose_report/index.html docs/pages/noty-android/compose_report.html | |
git config user.name $GITHUB_ACTOR | |
git config user.email [email protected] | |
echo "Compose Report Generated by $GITHUB_RUN_NUMBER via $GITHUB_EVENT_NAME on $(date +"%Y-%m-%d %r")" > docs/pages/noty-android/compose_report.meta | |
git add docs/pages/noty-android/compose_report.html | |
git add docs/pages/noty-android/compose_report.meta | |
git commit -m "Update compose compiler metric and report" | |
git status | |
git push |