From 5d75ca80aaf9b9ee2da131e8b88588986bce4e7c Mon Sep 17 00:00:00 2001 From: Fazri Gading Date: Wed, 21 Jan 2026 16:07:57 +0800 Subject: [PATCH] update 2.0.2b: add latest.yml for win & linux, arm64 support; remove snap --- .github/workflows/release.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5412f92..818a264 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,16 +18,19 @@ jobs: node-version: '22' cache: 'npm' - run: npm ci - - run: npx electron-builder --linux --publish never + + - name: Build Linux Packages + run: | + npx electron-builder --linux --x64 --arm64 --publish never - uses: actions/upload-artifact@v4 with: name: linux-builds path: | dist/*.AppImage dist/*.deb - dist/*.snap dist/*.rpm dist/*.pacman + dist/latest.yml build-windows: runs-on: windows-latest @@ -44,6 +47,7 @@ jobs: name: windows-builds path: | dist/*.exe + dist/latest.yml build-macos: runs-on: macos-latest