From 0b69e2a3110db2455deecbc7701029bb05a8bf5b Mon Sep 17 00:00:00 2001 From: roberto Date: Mon, 2 Mar 2026 21:58:30 +0100 Subject: [PATCH] fix: switch to electron-forge make command --- .gitea/workflows/build.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index adf960e..c588628 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -18,16 +18,18 @@ jobs: - name: Install Dependencies run: npm install - - name: Make App (Compile & Package) - # Usiamo il tuo script 'make' e gli diciamo di compilare per Linux e Windows - run: npm run make -- --platform=linux,win32 --arch=x64 + - name: Make App (Linux) + run: npm run make -- --platform=linux --arch=x64 + + - name: Make App (Windows) + # Sfrutta Wine (incluso nel container) per compilare per Windows + run: npm run make -- --platform=win32 --arch=x64 - name: Create Gitea Release & Upload uses: akkuman/gitea-release-action@v1 env: NODE_OPTIONS: '--experimental-fetch' with: - # Electron Forge di default salva gli eseguibili finiti nella cartella 'out/make/' files: |- out/make/**/*.exe out/make/**/*.zip