Build #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Set up NDK | |
uses: nttld/setup-ndk@v1 | |
with: | |
ndk-version: r26b | |
- name: Build | |
run: | | |
ndk-build NDK_PROJECT_PATH=. APP_BUILD_SCRIPT=./jni/Android.mk NDK_APPLICATION_MK=./jni/Application.mk | |
- name: Upload Android Ptrace Injector | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Android-Ptrace-Injector | |
path: libs/* |