Skip to content

Commit

Permalink
修复yml中ndk安装的报错
Browse files Browse the repository at this point in the history
Change-Id: I686452befb45860d4cc66da522c37664394c0db0
  • Loading branch information
SundoggyNew committed Apr 25, 2024
1 parent 744dfb3 commit 1601303
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/debug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
# key: ndk-cache-22.0.7026061
- name: Setup NDK
# if: steps.ndk-cache.outputs.cache-hit != 'true'
run: echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;22.0.7026061"
run: echo "y" | ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;22.0.7026061"
- name: Update SDK Version
run: bash .github/scripts/updateVersionCodeForSnapshot.sh
# - name: Test with Gradle
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
# key: ndk-cache-22.0.7026061
- name: Setup NDK
# if: steps.ndk-cache.outputs.cache-hit != 'true'
run: echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;22.0.7026061"
run: echo "y" | ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;22.0.7026061"
# - name: Test with Gradle
# run: ./gradlew test
- name: Remove snapshot dependency
Expand Down

0 comments on commit 1601303

Please sign in to comment.