fix: Build and release only production APK #115
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: Android CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- develop | ||
- testing | ||
jobs: | ||
build_and_release: | ||
runs-on: ubuntu-latest | ||
needs: [unit_tests, android_tests] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: gradle | ||
- name: Decode keystore | ||
run: echo "${{ secrets.KEYSTORE_BASE64 }}" | base64 -d > ${{ github.workspace }}/key_store.jks | ||
- name: Setup Gradle | ||
uses: gradle/gradle-build-action@v2 | ||
- name: Build app | ||
run: | | ||
./gradlew assembleProductionRelease | ||
echo "Built APK files:" | ||
find presentation/build/outputs/apk -name "*.apk" -type f | ||
env: | ||
KEYSTORE_PATH: ${{ github.workspace }}/key_store.jks | ||
RELEASE_STORE_PASSWORD: ${{ secrets.RELEASE_STORE_PASSWORD }} | ||
RELEASE_KEY_ALIAS: ${{ secrets.RELEASE_KEY_ALIAS }} | ||
RELEASE_KEY_PASSWORD: ${{ secrets.RELEASE_KEY_PASSWORD }} | ||
- name: Retrieve Version | ||
run: echo "APP_VERSION_NAME=$(grep '^versionName=' gradle.properties | cut -d'=' -f2)" >> $GITHUB_ENV | ||
- name: Create Release on GitHub | ||
uses: softprops/action-gh-release@v1 | ||
if: github.ref == 'refs/heads/master' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.SHIORI_TOKEN }} | ||
with: | ||
tag_name: v${{ env.APP_VERSION_NAME }} | ||
name: Release - v${{ env.APP_VERSION_NAME }} | ||
generate_release_notes: true | ||
prerelease: false | ||
files: presentation/build/outputs/apk/production/release/*.apk |