Add SurfaceControl support for surface switching in GSYExo2PlayerView and GSYExoPlayerManager #359
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - dev | |
| paths-ignore: | |
| - '.idea/**' | |
| - '.gitattributes' | |
| - '.github/**.json' | |
| - '.gitignore' | |
| - '.gitmodules' | |
| - '**.md' | |
| - '**/*.txt' | |
| - '**/*.png' | |
| - '**/*.jpg' | |
| - 'LICENSE' | |
| - 'NOTICE' | |
| pull_request: | |
| paths-ignore: | |
| - '.idea/**' | |
| - '.gitattributes' | |
| - '.github/**.json' | |
| - '.gitignore' | |
| - '.gitmodules' | |
| - '**.md' | |
| - '**/*.txt' | |
| - '**/*.png' | |
| - '**/*.jpg' | |
| - 'LICENSE' | |
| - 'NOTICE' | |
| jobs: | |
| publish: | |
| name: Publish to MavenLocal | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - uses: gradle/gradle-build-action@v2 | |
| with: | |
| arguments: publishToMavenLocal | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - uses: gradle/gradle-build-action@v2 | |
| with: | |
| arguments: app:assembleDebug |