Skip to content

Commit 8eaf03a

Browse files
Akos Kittakittaakos
Akos Kitta
authored andcommitted
Fixed the app packager on Windows.
Signed-off-by: Akos Kitta <[email protected]>
1 parent f36d261 commit 8eaf03a

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

Diff for: .github/workflows/build.yml

-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ jobs:
4444
- name: Package
4545
shell: bash
4646
env:
47-
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: true
4847
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4948
AC_USERNAME: ${{ secrets.AC_USERNAME }}
5049
AC_PASSWORD: ${{ secrets.AC_PASSWORD }}

Diff for: electron/packager/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
const isCI = require('is-ci');
1010
shell.env.THEIA_ELECTRON_SKIP_REPLACE_FFMPEG = '1'; // Do not run the ffmpeg validation for the packager.
1111
shell.env.NODE_OPTIONS = '--max_old_space_size=4096'; // Increase heap size for the CI
12+
shell.env.PUPPETEER_SKIP_CHROMIUM_DOWNLOAD = 'true'; // Skip download and avoid `ERROR: Failed to download Chromium`.
1213
const template = require('./config').generateTemplate(new Date().toISOString());
1314
const utils = require('./utils');
1415
const merge = require('deepmerge');

0 commit comments

Comments
 (0)