Skip to content

Commit

Permalink
Adjust CI logic for two artifacts (wulkano#1076)
Browse files Browse the repository at this point in the history
  • Loading branch information
karaggeorge authored Jan 17, 2022
1 parent ae6c024 commit 6aca302
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ jobs:
- run: yarn
- run: yarn test
- run: yarn run dist
- run: mv dist/*.dmg dist/Kap.dmg
- run: mv dist/*-x64.dmg dist/Kap-x64.dmg
- run: mv dist/*-arm64.dmg dist/Kap-arm64.dmg
- store_artifacts:
path: dist/Kap.dmg
path: dist/Kap-x64.dmg
- store_artifacts:
path: dist/Kap-arm64.dmg
sentry-release:
docker:
- image: cimg/node:lts
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -280,10 +280,14 @@
},
"target": {
"target": "default",
"arch": ["x64", "arm64"]
"arch": [
"x64",
"arm64"
]
}
},
"dmg": {
"artifactName": "${productName}-${version}-${arch}.${ext}",
"iconSize": 160,
"contents": [
{
Expand Down

0 comments on commit 6aca302

Please sign in to comment.