2a3107a78d
- Add pack:linux (AppImage x64), linux/appImage artifact names in package.json. - Gitea sync: parallel build-electron-linux, merge Windows+Linux into Gitea upload; rename Windows artifact to electron-dist-windows. - Fractured launcher CI: electron-launcher-windows + electron-launcher-linux jobs. - scripts/manual-pack-linux.sh for local test builds from current tree. - Normalize Gitea base_url (prepend https if missing); baked channel uses full URL. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
312 B
Bash
Executable File
12 lines
312 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Local Linux AppImage build (uses current tree — no tag snapshot). Run from repo root or this dir.
|
|
set -euo pipefail
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
|
|
cd "$ROOT"
|
|
echo "==> npm ci"
|
|
npm ci
|
|
echo "==> npm run pack:linux (AppImage x64)"
|
|
npm run pack:linux
|
|
echo "==> dist/:"
|
|
ls -la dist/
|