pull/5200/head
bunsenstraat 2 months ago
parent ebe52cdb93
commit ffe5a77b48
  1. 4
      .circleci/config.yml
  2. 13
      apps/remixdesktop/after-pack.js
  3. 1
      apps/remixdesktop/insiders.json

@ -483,6 +483,7 @@ jobs:
cat release/latest-mac.yml
mv release/latest-mac.yml release/latest-mac-<< parameters.arch >>.yml
fi
find build
- run:
name: Notarize the app
command: |
@ -545,7 +546,8 @@ jobs:
nvm use 20
cd apps/remixdesktop
yarn installRipGrepMacOXarm64
PUBLISH_FOR_PULL_REQUEST='false' DO_NOT_NOTARIZE='true' USE_HARD_LINKS=false ./rundist.bash --arm64
PUBLISH_FOR_PULL_REQUEST='false' DO_NOT_NOTARIZE='true' USE_HARD_LINKS=false ./rundist.bash --arm64
find build
- run:
name: "Run tests"
command: |

@ -0,0 +1,13 @@
const fs = require('fs-extra');
const path = require('path');
exports.default = async function (context) {
const resourcesPath = context.appOutDir;
console.log('resourcesPath', resourcesPath);
console.log('context outdir', context.appOutDir);
// Copy the node-pty module to the app folder
await fs.copy(
path.join(context.appOutDir, 'node_modules', 'node-pty'),
path.join(resourcesPath, 'node_modules', 'node-pty')
);
};

@ -7,6 +7,7 @@
"files": [
"build/**/*"
],
"afterPack": "after-pack.js",
"afterSign": "aftersign.js",
"afterAllArtifactBuild": "afterbuild.js",
"publish": [

Loading…
Cancel
Save