Skip to content

fix: Build and release only production APK #115

fix: Build and release only production APK

fix: Build and release only production APK #115

Workflow file for this run

name: Android CI
on:
push:
branches:
- master
- develop
- testing
jobs:
build_and_release:

Check failure on line 11 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Android CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
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