Skip to content

Commit 2ea9380

Browse files
committed
fix dist floder
1 parent 3b719f8 commit 2ea9380

File tree

3 files changed

+12
-32
lines changed

3 files changed

+12
-32
lines changed

.github/workflows/android-yuv.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/workflows/onestep.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function compile_android_platform
6868
{
6969
echo "---do compile android libs--------------------------------------"
7070
./main.sh compile -p android -c build -l ${LIB_NAME}
71-
cd build/product/android
71+
cd build/product/android/universal/${LIB_NAME}
7272
zip -rq $DIST_DIR/${LIB_NAME}-android-${RELEASE_VERSION}.zip ./*
7373
cd $ROOT_DIR
7474
}

.github/workflows/yuv.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,24 @@ on:
55
pull_request:
66
branches: [master]
77

8-
name: Create yuv Release
8+
name: YUV
99

1010
jobs:
1111
build:
12-
name: compile yuv then deploy
12+
name: compile apple and android yuv then deploy
1313
runs-on: macos-14
1414
env:
1515
GH_TOKEN: ${{ github.token }}
1616
steps:
1717
- name: Checkout code
1818
uses: actions/checkout@v4
19+
- uses: nttld/setup-ndk@v1
20+
id: setup-ndk
21+
with:
22+
ndk-version: r21e
23+
add-to-path: false
24+
local-cache: true
1925
- name: One Step
20-
run: .github/workflows/onestep.sh yuv all
26+
run: .github/workflows/onestep.sh yuv all
27+
env:
28+
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}

0 commit comments

Comments
 (0)