Skip to content

Commit

Permalink
🚀 chore(android_ci): Update JDK version to 17 and fix capitalization …
Browse files Browse the repository at this point in the history
…in workflow steps

Updated the JDK version to 17 in the workflow setup and corrected capitalization in the steps for generating and uploading the release APK. Also added the serviceCredentialsFile for Firebase App Distribution.

Signed-off-by: Dmytro Turskyi <[email protected]>
  • Loading branch information
Turskyi committed Jul 17, 2024
1 parent 6d3009b commit 5fbfb2c
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/android_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,18 @@ jobs:

steps:
- uses: actions/[email protected]

- name: Set up JDK environment(JDK 11)
- name: Set up JDK environment (JDK 17)
uses: actions/[email protected]
with:
java-version: 17

- name: Generate Release APK
run: ./gradlew assembleRelease

- name: upload artifact to Firebase App Distribution
- name: Upload artifact to Firebase App Distribution
uses: wzieba/Firebase-Distribution-Github-Action@v1
with:
appId: ${{secrets.FIREBASE_ANDROID_APPID}}
token: ${{secrets.FIREBASE_TOKEN}}
appId: ${{ secrets.FIREBASE_ANDROID_APPID }}
token: ${{ secrets.FIREBASE_TOKEN }}
groups: testers
releaseNotes: "Travelling Pro App Build"
file: presentation/build/outputs/apk/release/presentation-release.apk
serviceCredentialsFile: ${{ secrets.GOOGLE_APPLICATION_CREDENTIALS }}

0 comments on commit 5fbfb2c

Please sign in to comment.