fix(release): resolve build failures for v0.6.3

Fix Android Capacitor compatibility by downgrading tar to 6.2.1. Add Windows-specific icon file for Squirrel installer. Update electron-forge to 7.8.0 and change DMG format to ULFO for macOS Sequoia compatibility. Add retry logic for transient SSL errors on Mac Intel runners.
This commit is contained in:
plebeius
2026-01-30 15:26:17 +08:00
parent 50ee10cbc9
commit 01bda3bffb
4 changed files with 14 additions and 9 deletions
+6 -1
View File
@@ -89,7 +89,12 @@ jobs:
- run: pip install setuptools
- name: Install dependencies (with Node v22)
run: yarn install --frozen-lockfile --ignore-engines
run: |
for i in 1 2 3; do
yarn install --frozen-lockfile --ignore-engines && break
echo "Retry $i..."
sleep 10
done
# make sure the ipfs executable is executable
- name: Download IPFS and set permissions (with Node v22)
run: node electron/download-ipfs && sudo chmod +x bin/mac/ipfs