Update gradle/actions action to v3.3.1 (#160) #192
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: AndroidX Media3 FFmpeg Decoder / Publish | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- master | |
env: | |
NDK_VER: 26.1.10909125 | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-22.04 | |
environment: release | |
if: ${{ contains(github.repository_owner, 'jellyfin') || startsWith(github.ref, 'refs/tags/v') }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
submodules: recursive | |
- name: Setup Java | |
uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@750cdda3edd6d51b7fdfc069d2e2818cf3c44f4c # v3.3.1 | |
- name: Cache NDK | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: /usr/local/lib/android/sdk/ndk/${{ env.NDK_VER }} | |
key: ${{ runner.os }}-${{ env.NDK_VER }} | |
- name: Install correct NDK | |
run: sudo ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --install "ndk;${NDK_VER}" | |
- name: Build ffmpeg | |
run: ./build.sh | |
- name: Set JELLYFIN_VERSION | |
if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
run: echo "JELLYFIN_VERSION=$(echo ${GITHUB_REF#refs/tags/v} | tr / -)" >> $GITHUB_ENV | |
- name: Build extension and publish library | |
run: ./gradlew :media3-ffmpeg-decoder:publish closeAndReleaseSonatypeStagingRepository | |
env: | |
SIGNING_KEY: ${{ secrets.SIGNING_KEY }} | |
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} |