Skip to content

Commit b1b59be

Browse files
committed
ci(publish): restructure Linux build artifacts and update startup script
- Move PMHQ binary to nested directory structure (llbot/pmhq) for better organization - Update Linux startup script to properly execute both Node.js and PMHQ binaries
1 parent 5147939 commit b1b59be

3 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
wget https://github.com/linyuchen/PMHQ/releases/latest/download/pmhq-linux-x64.zip
7979
unzip pmhq-linux-x64.zip
8080
rm pmhq-linux-x64.zip
81-
mv pmhq-linux-x64 llbot
81+
mv pmhq-linux-x64 llbot/pmhq
8282
wget https://github.com/LLOneBot/exe/releases/latest/download/node-linux-x64 -O llbot/node
8383
cp ../script/start-linux.sh ./start.sh
8484
zip -r ../LLBot-CLI-linux-x64.zip ./*
@@ -93,7 +93,7 @@ jobs:
9393
wget https://github.com/linyuchen/PMHQ/releases/latest/download/pmhq-linux-arm64.zip
9494
unzip pmhq-linux-arm64.zip
9595
rm pmhq-linux-arm64.zip
96-
mv pmhq-linux-arm64 llbot
96+
mv pmhq-linux-arm64 llbot/pmhq
9797
wget https://github.com/LLOneBot/exe/releases/latest/download/node-linux-arm64 -O llbot/node
9898
cp ../script/start-linux.sh ./start.sh
9999
zip -r ../LLBot-CLI-linux-arm64.zip ./*

doc/更新日志.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
V6.6.9
2-
更新时间 2025-11-30
2+
更新时间 2025-12-03
33

44
* 修复默认配置文件没有正确加载
5+
* 修复 docker 的 webui 没有正确监听 0.0.0.0
56
* 新的 logo
67
* 新的客户端 UI
8+
* release 新增 Linux 版本
79

810
=================
911
V6.6.6

script/start-linux.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
22

33
chmod u+x $SCRIPT_DIR/llbot/node
4+
chmod +x $SCRIPT_DIR/llbot/pmhq
5+
46
$SCRIPT_DIR/llbot/node $SCRIPT_DIR/llbot/llonebot.js &
57

6-
chmod +x $SCRIPT_DIR/llbot
7-
xvfb-run $SCRIPT_DIR/llbot
8+
xvfb-run $SCRIPT_DIR/llbot/pmhq

0 commit comments

Comments
 (0)