feat: 添加 host-spawn 下载步骤并更新应用启动命令

This commit is contained in:
Elysia
2026-01-31 21:27:31 +08:00
parent 2f7af3ca8f
commit 850b8dcd1f
2 changed files with 11 additions and 3 deletions

View File

@@ -74,6 +74,15 @@ jobs:
run: |
npm install
- name: Download host-spawn
shell: bash
run: |
if [ "${{ matrix.architecture }}" == "x64" ]; then
curl -fsSL -o ./extras/host-spawn https://github.com/1player/host-spawn/releases/latest/download/host-spawn-x86_64
elif [ "${{ matrix.architecture }}" == "arm64" ]; then
curl -fsSL -o ./extras/host-spawn https://github.com/1player/host-spawn/releases/latest/download/host-spawn-aarch64
fi
- name: Build Release Files
shell: bash
run: |