Enhance TTML lyrics parsing and improve document normalization #43
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: Build Phone APK (Debug) | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build-phone: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| cache: 'gradle' | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Build Phone debug APK | |
| run: ./gradlew :app:assembleDebug | |
| - name: Upload Phone APK artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: PixelPlay-phone-only-debug | |
| path: app/build/outputs/apk/debug/*.apk | |