Handle moved PM interface on 14 QPR3 #162
This file contains hidden or 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: [ main ] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v3 | |
| with: | |
| java-version: 21 | |
| distribution: 'temurin' | |
| cache: 'gradle' | |
| - name: Write key | |
| if: github.event_name != 'pull_request' && github.ref == 'refs/heads/main' | |
| run: | | |
| if [ ! -z "${{ secrets.SIGNING_KEY }}" ]; then | |
| echo releaseStorePassword='${{ secrets.KEY_STORE_PASSWORD }}' >> gradle.properties | |
| echo releaseKeyAlias='${{ secrets.ALIAS }}' >> gradle.properties | |
| echo releaseKeyPassword='${{ secrets.KEY_PASSWORD }}' >> gradle.properties | |
| echo releaseStoreFile='key.jks' >> gradle.properties | |
| echo ${{ secrets.SIGNING_KEY }} | base64 --decode > key.jks | |
| fi | |
| - name: Build with Gradle | |
| run: ./gradlew assembleRelease assembleDebug | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Signed app bundle | |
| path: app/build/outputs/apk |