-
Notifications
You must be signed in to change notification settings - Fork 15
58 lines (56 loc) · 1.62 KB
/
build.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
name: Build Encore Zip
on:
workflow_dispatch:
push:
branches:
- main
paths:
- '.github/workflows/build.yml'
- '.github/scripts/**'
- 'src/**'
- 'module/**'
- 'webui/**'
- 'gamelist.txt'
- 'version'
jobs:
build:
name: Build Flashable Zip
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: NDK Setup
uses: nttld/setup-ndk@v1
with:
ndk-version: r27b
- name: Build Encore JNI
working-directory: ./src
run: ndk-build
- name: Build WebUI
working-directory: ./src/webui
run: |
npm install
npm run tailwind
npm run build
cp ./dist/* ../../module/webroot
- name: Compile flashable zip
id: compileZip
run: bash .github/scripts/compile_zip.sh
- name: Upload to telegram
env:
CHAT_ID: ${{ secrets.CHAT_ID }}
BOT_TOKEN: ${{ secrets.BOT_TOKEN }}
COMMIT_MESSAGE: ${{ github.event.head_commit.message }}
COMMIT_URL: ${{ github.event.head_commit.url }}
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
TITLE: Encore Tweaks
run: |
if [ ! -z "${{ secrets.CHAT_ID }}" ] && [ ! -z "${{ secrets.BOT_TOKEN }}" ]; then
export VERSION=$(git rev-list --count HEAD)
bash .github/scripts/telegram_bot.sh $GITHUB_WORKSPACE/${{ steps.compileZip.outputs.zipName }}
else
echo "Telegram bot token or chatid is undefined, please add it to repository secrets!"
exit 1
fi