forked from starifly/NekoBoxForAndroid
-
Notifications
You must be signed in to change notification settings - Fork 3
105 lines (100 loc) · 3.81 KB
/
Copy pathpreview.yml
File metadata and controls
105 lines (100 loc) · 3.81 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
name: Preview Build
on:
push:
paths:
- 'nb4a.properties'
workflow_dispatch:
inputs:
jobs:
libcore:
name: Native Build (LibCore)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Golang Status
run: find buildScript libcore/*.sh | xargs cat | sha1sum > golang_status
- name: Libcore Status
run: git ls-files libcore | xargs cat | sha1sum > libcore_status
- name: LibCore Cache
id: cache
uses: actions/cache@v5
with:
path: |
app/libs/libcore.aar
key: ${{ hashFiles('.github/workflows/*', 'golang_status', 'libcore_status') }}
- name: Install Golang
if: steps.cache.outputs.cache-hit != 'true'
uses: actions/setup-go@v6
with:
go-version: ^1.25
- name: Native Build
if: steps.cache.outputs.cache-hit != 'true'
run: ./run lib core
build:
name: Build OSS APK
runs-on: ubuntu-latest
needs:
- libcore
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Golang Status
run: find buildScript libcore/*.sh | xargs cat | sha1sum > golang_status
- name: Libcore Status
run: git ls-files libcore | xargs cat | sha1sum > libcore_status
- name: LibCore Cache
uses: actions/cache@v5
with:
path: |
app/libs/libcore.aar
key: ${{ hashFiles('.github/workflows/*', 'golang_status', 'libcore_status') }}
- name: Gradle cache
uses: actions/cache@v5
with:
path: ~/.gradle
key: gradle-oss-${{ hashFiles('**/*.gradle.kts') }}
- name: Gradle Build
env:
BUILD_PLUGIN: none
run: |
echo "sdk.dir=${ANDROID_HOME}" > local.properties
echo "ndk.dir=${ANDROID_HOME}/ndk/25.0.8775105" >> local.properties
export LOCAL_PROPERTIES="${{ secrets.LOCAL_PROPERTIES }}"
./run init action gradle
./gradlew app:assemblePreviewRelease
# Sign unsigned APKs with fixed debug keystore if available, otherwise fallback to dynamic generation
KEYSTORE_PATH="debug.keystore"
if [ -f "$KEYSTORE_PATH" ]; then
echo "Using fixed debug keystore from repository..."
else
echo "WARNING: Fixed debug keystore not found at $KEYSTORE_PATH!"
echo "Please run the 'Initialize Debug Keystore' workflow first."
echo "Falling back to dynamic debug.keystore generation..."
KEYSTORE_PATH="$HOME/.android/debug.keystore"
if [ ! -f "$KEYSTORE_PATH" ]; then
mkdir -p ~/.android
keytool -genkey -v -keystore "$KEYSTORE_PATH" -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 -dname "CN=Android Debug,O=Android,C=US"
fi
fi
APKSIGNER=$(find ${ANDROID_HOME}/build-tools -name apksigner | sort -V | tail -n 1)
if [ -z "$APKSIGNER" ]; then
APKSIGNER="apksigner"
fi
echo "Using apksigner: $APKSIGNER"
APK=$(find app/build/outputs/apk -name '*arm64-v8a*.apk')
APK_DIR=$(dirname $APK)
echo "Signing APKs in $APK_DIR..."
for apk in "$APK_DIR"/*-unsigned.apk; do
if [ -f "$apk" ]; then
signed_apk="${apk%-unsigned.apk}-debug-signed.apk"
echo "Signing $apk -> $signed_apk"
$APKSIGNER sign --ks "$KEYSTORE_PATH" --ks-pass pass:android --key-pass pass:android --out "$signed_apk" "$apk"
rm "$apk"
fi
done
echo "APK=$APK_DIR" >> $GITHUB_ENV
- uses: actions/upload-artifact@v5
with:
name: APKs
path: ${{ env.APK }}