refactor: remove connectivity-off illustration from CastBottomSheet #449
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 Wear OS APK (Debug) | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| branches: [ master ] | |
| workflow_dispatch: | |
| jobs: | |
| build-wear: | |
| if: github.actor != 'dependabot[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: '21' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Build Wear OS debug APK | |
| run: gradle :wear:assembleDebug | |
| - name: Upload Wear OS APK artifact | |
| uses: actions/upload-artifact@v7.0.1 | |
| with: | |
| name: PixelPlay-wear-only-debug | |
| path: wear/build/outputs/apk/debug/*.apk |