Upgrade NewPipeExtractor #727
Workflow file for this run
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: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: gradle/wrapper-validation-action@v1 | |
| - name: set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 17 | |
| distribution: "adopt" | |
| - name: Cache Gradle packages | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.gradle/caches | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
| restore-keys: ${{ runner.os }}-gradle | |
| - name: Run Tests | |
| run: ./gradlew testOssDebugUnitTest | |
| - name: Build with Gradle | |
| run: ./gradlew assemble | |
| - name: Upload Artifacts - OSS version | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: SkyTube-Oss.apk | |
| path: app/build/outputs/apk/oss/snapshot/SkyTube-Oss-*.apk | |
| - name: Upload Artifacts - Extra version | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: SkyTube-Extra.apk | |
| path: app/build/outputs/apk/extra/snapshot/SkyTube-Extra-*.apk |