diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 9f4baaf..ba278b9 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -26,9 +26,18 @@ jobs: - name: Make App (Linux) 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) - # Sfrutta Wine (incluso nel container) per compilare per Windows run: npm run make -- --platform=win32 --arch=x64 + env: + WINEDEBUG: '-all' - name: Create Gitea Release & Upload uses: akkuman/gitea-release-action@v1 @@ -40,5 +49,4 @@ jobs: out/make/**/*.zip out/make/**/*.deb out/make/**/*.rpm - out/make/**/*.AppImage token: ${{ gitea.token }} \ No newline at end of file