fix: HLS MP4 seek #31
This file contains 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 libmpv-android | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: write | |
env: | |
NDK_VER: 25.1.8937393 | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Setup Java JDK | |
uses: actions/[email protected] | |
with: | |
distribution: temurin | |
java-version: 11 | |
- name: Setup Flutter SDK | |
uses: subosito/flutter-action@v1 | |
with: | |
channel: "stable" | |
- name: Gradle Build Action | |
uses: gradle/[email protected] | |
- name: Cache | |
uses: actions/[email protected] | |
with: | |
path: /usr/local/lib/android/sdk/ndk/${{ env.NDK_VER }} | |
key: ${{ runner.os }}-${{ env.NDK_VER }} | |
- name: Symlink SDK | |
working-directory: ./buildscripts | |
run: | | |
mkdir sdk | |
ln -s ${ANDROID_HOME} ./sdk/android-sdk-linux | |
- name: Bundle (default) | |
working-directory: ./buildscripts | |
run: | | |
sudo chmod +x bundle_default.sh | |
./bundle_default.sh | |
- name: Bundle (full) | |
working-directory: ./buildscripts | |
run: | | |
sudo chmod +x bundle_full.sh | |
./bundle_full.sh | |
- uses: actions/[email protected] | |
with: | |
name: artifact | |
path: ./output/* | |
- uses: softprops/action-gh-release@v1 | |
if: github.ref == 'refs/heads/main' | |
with: | |
draft: true | |
prerelease: false | |
tag_name: "vnext" | |
files: | | |
output/* |