We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d65eb2e commit 7544a94Copy full SHA for 7544a94
1 file changed
.github/workflows/build.yml
@@ -0,0 +1,30 @@
1
+name: Build
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ setup-and-build:
8
+ runs-on: ubuntu-latest
9
10
+ env:
11
+ NDK_VERSION: r26d
12
13
+ steps:
14
+ - name: Checkout repository
15
+ uses: actions/checkout@v4
16
17
+ - name: Build for all architectures
18
+ run: |
19
+ chmod +x ./build.sh
20
+ ./build.sh
21
22
+ - name: Upload build artifacts
23
+ uses: actions/upload-artifact@v4
24
+ with:
25
+ name: ndk-build-artifacts
26
+ path: |
27
+ build-arm64/install
28
+ build-arm/install
29
+ build-x86/install
30
+ build-x86_64/install
0 commit comments