2 parents 0e4787a + 65258db commit b63daf9Copy full SHA for b63daf9
1 file changed
.github/workflows/release.yml
@@ -35,9 +35,11 @@ jobs:
35
- name: Ensure Android NDK and CMake are available
36
run: |
37
# The ubuntu-latest runner has $ANDROID_HOME pre-installed.
38
+ # sdkmanager is not on PATH; use the full path.
39
+ SDKMANAGER="$ANDROID_HOME/cmdline-tools/latest/bin/sdkmanager"
40
# Install latest stable NDK (r29) + CMake.
- yes | sdkmanager --licenses > /dev/null 2>&1 || true
- sdkmanager --install "ndk;29.0.14206865" "cmake;3.22.1" > /dev/null 2>&1
41
+ yes | "$SDKMANAGER" --licenses > /dev/null 2>&1 || true
42
+ "$SDKMANAGER" --install "ndk;29.0.14206865" "cmake;3.22.1" > /dev/null 2>&1
43
44
- name: Build native library (libosu_native.so)
45
0 commit comments