Skip to content

chore(deps): bump androidx.compose:compose-bom from 2024.06.00 to 2024.11.00 #131

chore(deps): bump androidx.compose:compose-bom from 2024.06.00 to 2024.11.00

chore(deps): bump androidx.compose:compose-bom from 2024.06.00 to 2024.11.00 #131

name: Develop Release CI
on:
push:
branches:
- 'develop'
pull_request:
branches:
- 'main'
- 'master'
- 'release*'
- 'develop'
jobs:
test-and-build-android:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up Ruby for fastlane
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
- name: set up JDK 17
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '17'
- name: Configure Google service (crashLitics)
run: |
echo "$GOOGLE_SERVICE" > google-services.json.b64
base64 -d -i google-services.json.b64 > app/google-services.json
env:
GOOGLE_SERVICE: ${{ secrets.GOOGLE_SERVICE }}
- name: Configure Keystore
run: |
echo "$ANDROID_KEYSTORE_FILE" > keystore.jks.b64
base64 -d -i keystore.jks.b64 > app/keystore.jks
echo "storeFile=keystore.jks" >> keystore.properties
echo "keyAlias=$KEYSTORE_KEY_ALIAS" >> keystore.properties
echo "storePassword=$KEYSTORE_STORE_PASSWORD" >> keystore.properties
echo "keyPassword=$KEYSTORE_KEY_PASSWORD" >> keystore.properties
env:
ANDROID_KEYSTORE_FILE: ${{ secrets.ANDROID_KEYSTORE_FILE }}
KEYSTORE_KEY_ALIAS: ${{ secrets.KEYSTORE_KEY_ALIAS }}
KEYSTORE_KEY_PASSWORD: ${{ secrets.KEYSTORE_KEY_PASSWORD }}
KEYSTORE_STORE_PASSWORD: ${{ secrets.KEYSTORE_STORE_PASSWORD }}
# Step 3: Check the code with ktlint, you can remove this job if you don't use ktlint
- name: Run Kotlin Linter
run: ./gradlew ktlintCheck
# Step 3: Check the code with Android linter
- name: Run Android Linter
run: ./gradlew lintDebug
- name: Install bundle
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Attempt to test and build app throught fastlane
run: bundle exec fastlane test