-
Notifications
You must be signed in to change notification settings - Fork 1.9k
43 lines (40 loc) · 1.14 KB
/
android-continuous.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Android
on:
push:
branches:
- main
- release
- rc/**
jobs:
build-android:
name: build-android
runs-on: macos-latest
steps:
- uses: actions/[email protected]
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Run build script
run: |
cd build/android && printf "y" | ./build.sh continuous
- uses: actions/[email protected]
with:
name: filament-android
path: out/filament-android-release.aar
- uses: actions/[email protected]
with:
name: filamat-android-full
path: out/filamat-android-release.aar
- uses: actions/[email protected]
with:
name: filamat-android-lite
path: out/filamat-android-lite-release.aar
- uses: actions/[email protected]
with:
name: gltfio-android-release
path: out/gltfio-android-release.aar
- uses: actions/[email protected]
with:
name: filament-utils-android-release
path: out/filament-utils-android-release.aar