Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/4 android debug builds automation #11

Merged
merged 2 commits into from
Aug 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 11 additions & 10 deletions .github/workflows/main-pr-checks.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: "PR Checks for `main`"
name: "CI / Android Debug Builds"
#
on:
pull_request:
types:
Expand Down Expand Up @@ -31,13 +32,13 @@ jobs:
- name: "Setup Gradle"
uses: gradle/actions/setup-gradle@v3

- name: "Build: Assemble and Test entire project"
run: ./gradlew :app-android:build
- name: "Build: Assemble and Test Debug Binary"
run: ./gradlew :app-android:buildDebug

# - run: ./gradlew generate coverage report, upload test/coverage reports

- name: "Bundle: Generate AABs"
run: ./gradlew :app-android:bundle
- name: "Bundle: Generate Debug AAB"
run: ./gradlew :app-android:bundleDebug

# - name: "Upload: Send Release to Google Play Store"
# uses: google-github-actions/upload-google-play@main
Expand All @@ -47,8 +48,8 @@ jobs:
# bundleFile: app/build/outputs/bundle/release/app-release.aab
# track: internal

# - name: "Upload: Send AABs to GitHub"
# uses: actions/upload-artifact@v2
# with:
# name: app-android
# path: app-android/build/outputs/bundle/debug/app-android-debug.aab
- name: "Upload: Send AABs to GitHub"
uses: actions/upload-artifact@v4
with:
name: app-android-debug
path: app-android/build/outputs/bundle/debug/app-android-debug.aab