rdesktop2
filip mertens 1 year ago
parent 0e1c48d3a1
commit 2daccdec42
  1. 8
      .circleci/config.yml
  2. 10
      apps/remixdesktop/package.json

@ -120,13 +120,11 @@ jobs:
cd apps/remixdesktop/ cd apps/remixdesktop/
yarn yarn
yarn dist --win yarn dist --win
rm -rf release/*-unpacked
- save_cache: - save_cache:
key: remixdesktop-windows-deps-{{ checksum "apps/remixdesktop/yarn.lock" }} key: remixdesktop-windows-deps-{{ checksum "apps/remixdesktop/yarn.lock" }}
paths: paths:
- apps/remixdesktop/node_modules - apps/remixdesktop/node_modules
- run:
name: Preparing for artifact upload
command: rm -rf release/*-unpacked release/mac*
- store_artifacts: - store_artifacts:
path: apps/remixdesktop/release/ path: apps/remixdesktop/release/
destination: remixdesktop-windows destination: remixdesktop-windows
@ -173,9 +171,7 @@ jobs:
yarn build:desktop yarn build:desktop
cd apps/remixdesktop cd apps/remixdesktop
yarn dist --mac yarn dist --mac
- run: rm -rf release/mac*
name: Preparing for artifact upload
command: rm -rf release/*-unpacked release/mac*
- store_artifacts: - store_artifacts:
path: apps/remixdesktop/release/ path: apps/remixdesktop/release/
destination: remixdesktop-mac destination: remixdesktop-mac

@ -43,9 +43,18 @@
"mac": { "mac": {
"category": "public.app-category.productivity", "category": "public.app-category.productivity",
"target": [ "target": [
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
},
{ {
"target": "dmg", "target": "dmg",
"arch": [ "arch": [
"x64",
"arm64",
"universal" "universal"
] ]
} }
@ -64,6 +73,7 @@
}, },
"win": { "win": {
"target": [ "target": [
"zip",
"nsis" "nsis"
] ]
}, },

Loading…
Cancel
Save