only run on circle

signmacosdesktop
filip mertens 9 months ago
parent befef19a4e
commit 7805dbe199
  1. 4
      apps/remixdesktop/afterbuild.js
  2. 2
      apps/remixdesktop/package.json

@ -1,8 +1,8 @@
const fs = require('fs');
exports.default = async function afterbuild(context) {
// do not run when not on macOS
if (process.platform !== 'darwin') {
// do not run when not on macOS or when not on CIRCLECI
if (process.platform !== 'darwin' || !process.env.CIRCLE_BRANCH) {
return;
}

@ -1,6 +1,6 @@
{
"name": "remixdesktop",
"version": "0.0.12-Alpha",
"version": "0.0.21-Alpha",
"main": "build/main.js",
"license": "MIT",
"type": "commonjs",

Loading…
Cancel
Save