Skip to content

Commit

Permalink
Also install CMake in publish workflow (#178)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxr1998 authored Dec 12, 2024
1 parent d24442d commit 9bbeb8b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/extension-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
with:
path: /usr/local/lib/android/sdk/ndk/${{ env.NDK_VER }}
key: ${{ runner.os }}-${{ env.NDK_VER }}
- name: Install correct NDK
- name: Install correct NDK and CMake
run: sudo ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --install "ndk;${NDK_VER}" "cmake;${CMAKE_VER}"
- name: Build ffmpeg
run: ./build.sh
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/extension-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ on:

env:
NDK_VER: 26.1.10909125
CMAKE_VER: 3.31.1

jobs:
publish:
Expand All @@ -33,8 +34,8 @@ jobs:
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: Install correct NDK and CMake
run: sudo ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --install "ndk;${NDK_VER}" "cmake;${CMAKE_VER}"
- name: Build ffmpeg
run: ./build.sh
- name: Set JELLYFIN_VERSION
Expand Down

0 comments on commit 9bbeb8b

Please sign in to comment.