summaryrefslogtreecommitdiffhomepage
path: root/.github
diff options
context:
space:
mode:
authorRay <[email protected]>2022-08-11 20:16:48 +0200
committerGitHub <[email protected]>2022-08-11 20:16:48 +0200
commit764254d93e84e97f982fcd8631c74b7249340207 (patch)
tree5006772c04310c6fc0ef59e4112cca309e16aecc /.github
parentb55cb32d9be7beb690e988c659764253b52bd99b (diff)
downloadraylib-764254d93e84e97f982fcd8631c74b7249340207.tar.gz
raylib-764254d93e84e97f982fcd8631c74b7249340207.zip
Update android.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/android.yml10
1 files changed, 7 insertions, 3 deletions
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml
index ec3d7c59..49d127b5 100644
--- a/.github/workflows/android.yml
+++ b/.github/workflows/android.yml
@@ -42,14 +42,18 @@ jobs:
shell: bash
if: github.event_name == 'release' && github.event.action == 'published'
- - name: Setup Android NDK
+ - name: Checkout Android NDK
uses: actions/checkout@v2
- - uses: nttld/setup-ndk@v1
+
+ - name: Setup Android NDK
id: setup-ndk
+ uses: nttld/setup-ndk@v1
with:
ndk-version: r29
add-to-path: false
- - run: ./build.sh
+
+ - name: Add Android NDK to path
+ run: ./build.sh
env:
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}