Skip to content

Commit 375554b

Browse files
committed
fix: restore build step for mac and linux
When debugging Windows build issues, the generic build step was replaced with a Windows-exclusive step. This caused macOS and Linux builds to skip the actual electron packaging process. Restored a 'Build Electron app (Mac/Linux)' step to ensure artifacts are generated for those platforms.
1 parent f941210 commit 375554b

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

‎.github/workflows/build.yml‎

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ jobs:
8181
echo "=== Backend dist ==="
8282
ls -la backend/dist/ || echo "backend/dist/ not found"
8383
84+
- name: Build Electron app (Mac/Linux)
85+
if: runner.os != 'Windows'
86+
run: npm run build
87+
env:
88+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
89+
8490
- name: Build Electron app (Windows)
8591
if: runner.os == 'Windows'
8692
run: |

0 commit comments

Comments
 (0)