minor update based on review

This commit is contained in:
Wendong-Fan 2026-01-20 06:27:03 +08:00
parent 3bee3cba54
commit e26f7316ac
3 changed files with 15 additions and 6 deletions

View file

@ -56,6 +56,13 @@ jobs:
- name: Install Dependencies
run: npm install
# Install libfuse2 for Linux AppImage builds
- name: Install libfuse2 (Linux)
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y libfuse2
# Step for macOS builds with signing
- name: Build Release Files (macOS with signing)
if: runner.os == 'macOS'
@ -185,4 +192,4 @@ jobs:
release/win-x64/*
release/linux-x64/*
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}