change build
Some checks failed
Release Electron App / release-desktop (push) Failing after 6m21s

This commit is contained in:
2026-03-03 12:58:57 +01:00
parent 6eed29a057
commit 689badb67d

View File

@@ -26,9 +26,18 @@ jobs:
- name: Make App (Linux) - name: Make App (Linux)
run: npm run make -- --platform=linux --arch=x64 run: npm run make -- --platform=linux --arch=x64
- name: Initialize Wine
run: |
export WINEDEBUG=-all
export DISPLAY=
wineboot --init
env:
WINEDEBUG: '-all'
- name: Make App (Windows) - name: Make App (Windows)
# Sfrutta Wine (incluso nel container) per compilare per Windows
run: npm run make -- --platform=win32 --arch=x64 run: npm run make -- --platform=win32 --arch=x64
env:
WINEDEBUG: '-all'
- name: Create Gitea Release & Upload - name: Create Gitea Release & Upload
uses: akkuman/gitea-release-action@v1 uses: akkuman/gitea-release-action@v1
@@ -40,5 +49,4 @@ jobs:
out/make/**/*.zip out/make/**/*.zip
out/make/**/*.deb out/make/**/*.deb
out/make/**/*.rpm out/make/**/*.rpm
out/make/**/*.AppImage
token: ${{ gitea.token }} token: ${{ gitea.token }}