Skip to content

更新文档

更新文档 #11

Workflow file for this run

name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup NDK
uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r28c
- name: Setup Xmake
uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: latest
- name: Configure Xmake
run: xmake f --host=android -m release -a arm64-v8a -p android -y
- name: Build with Xmake
run: xmake -y
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: urhook-android
path: build/android/arm64-v8a/release/liburhook.a