Compare commits

..

1 Commits

Author SHA1 Message Date
Clem Fern
98719aafdc fix native modules rebuild on macos 2023-11-14 20:11:34 +01:00
4 changed files with 1 additions and 3 deletions

View File

@@ -53,6 +53,7 @@ jobs:
- name: Install deps - name: Install deps
run: | run: |
sudo -H pip install setuptools
sudo npm i -g yarn@1.22.1 node-gyp@10 sudo npm i -g yarn@1.22.1 node-gyp@10
yarn --network-timeout 1000000 yarn --network-timeout 1000000
env: env:

View File

@@ -2,7 +2,6 @@
appId: org.tabby appId: org.tabby
productName: Tabby productName: Tabby
compression: normal compression: normal
npmRebuild: false
files: files:
- '**/*' - '**/*'
- dist - dist

View File

@@ -32,7 +32,6 @@ builder({
teamId: process.env.APPLE_TEAM_ID, teamId: process.env.APPLE_TEAM_ID,
} : false, } : false,
}, },
npmRebuild: true,
publish: process.env.KEYGEN_TOKEN ? [ publish: process.env.KEYGEN_TOKEN ? [
vars.keygenConfig, vars.keygenConfig,
{ {

View File

@@ -12,7 +12,6 @@ builder({
win: ['nsis', 'zip'], win: ['nsis', 'zip'],
arm64: process.env.ARCH === 'arm64', arm64: process.env.ARCH === 'arm64',
config: { config: {
npmRebuild: true,
extraMetadata: { extraMetadata: {
version: vars.version, version: vars.version,
}, },