mirror of
https://git.quad4.io/RNS-Things/MeshChatX.git
synced 2026-05-03 09:55:21 +00:00
13 lines
324 B
Bash
Executable File
13 lines
324 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Build macOS universal (x64 + arm64) DMG via electron-builder. Unsigned CI build; signing is disabled.
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
export CSC_IDENTITY_AUTO_DISCOVERY=false
|
|
|
|
pnpm run dist:mac-universal
|
|
|
|
bash scripts/ci/github-prune-electron-dist-staging.sh
|