debug
This commit is contained in:
parent
1ed9cbd2a8
commit
f844828330
|
|
@ -56,7 +56,11 @@ jobs:
|
|||
if [ "$RUNNER_OS" == "Windows" ]; then
|
||||
npx nx run open-lens:build:app --win nsis msi portable
|
||||
elif [ "$RUNNER_OS" == "Linux" ]; then
|
||||
npx nx run open-lens:build:app --x64 --arm64
|
||||
npx nx run open-lens:build:app --x64
|
||||
rm -rf node_modules
|
||||
npm run all:install -- --arch=arm64
|
||||
npx nx reset
|
||||
npx nx run open-lens:build:app --arm64
|
||||
find . -name '*pty.node' -print0 | xargs -0 file
|
||||
else
|
||||
npx nx run open-lens:build:app --x64 --arm64
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
const fs = require('fs');
|
||||
const os = require('os');
|
||||
|
||||
const packageJsonOpenLens = require('./lens/open-lens/package.json');
|
||||
|
||||
|
|
@ -8,7 +9,7 @@ packageJsonOpenLens.build.publish = [{
|
|||
}];
|
||||
|
||||
packageJsonOpenLens.version = `${packageJsonOpenLens.version}-${process.env.BUILD_ID}`;
|
||||
packageJsonOpenLens.build.npmRebuild = true;
|
||||
packageJsonOpenLens.build.npmRebuild = os.platform() === 'darwin';
|
||||
packageJsonOpenLens.build.detectUpdateChannel = false;
|
||||
|
||||
delete packageJsonOpenLens.scripts.postinstall;
|
||||
|
|
|
|||
Loading…
Reference in New Issue