add Create keystore folder to github actions #22
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: Upload to Firebase App Distribution | |
on: | |
push: | |
branches: | |
- dev | |
jobs: | |
build: | |
name: Build Politer AI Android mobile application | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'temurin' # Eclipse Temurin https://adoptium.net/ | |
- name: Write key.properties file | |
run: | | |
echo $KEY_PROPERTIES | base64 -d > key.properties | |
shell: bash | |
env: | |
KEY_PROPERTIES: ${{ secrets.KEY_PROPERTIES }} | |
- name: Create keystore folder | |
run: mkdir -p composeApp/src/androidMain/keystore | |
- name: Write politerai_release.keystore file | |
run: | | |
echo $RELEASE_KEYSTORE | base64 -d > composeApp/src/androidMain/keystore/politerai_release.keystore | |
shell: bash | |
env: | |
RELEASE_KEYSTORE: ${{ secrets.RELEASE_KEYSTORE }} | |
- name: Generate Release APK | |
run: ./gradlew assembleDebug | |
- name: upload artifact to Firebase App Distribution | |
uses: wzieba/Firebase-Distribution-Github-Action@v1 | |
with: | |
appId: ${{secrets.FIREBASE_ANDROID_APP_ID}} | |
token: ${{secrets.FIREBASE_TOKEN}} | |
groups: testers | |
releaseNotes: "Politer AI Android Application Build" | |
file: composeApp/build/outputs/apk/release/composeApp-release.apk | |