Skip to content

Commit c593d31

Browse files
authored
Merge pull request #66 from gristlabs/paulfitz/macos-x64-build
A change in github runners left the macos x64 running on the wrong architecture.
2 parents 9dd6a5a + 1705408 commit c593d31

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/package.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88
- '*'
99
env:
1010
FORCE_COLOR: 1
11+
# This makes the macos-13 packaging work.
12+
# I don't know why. Your guess is as good as mine.
13+
DEBUG_DMG: true
1114
concurrency:
1215
group: ${{ github.head_ref || github.run_id }}
1316
cancel-in-progress: true
@@ -21,7 +24,7 @@ jobs:
2124
fail-fast: false
2225
matrix:
2326
os:
24-
- macos-14
27+
- macos-13
2528
- ubuntu-22.04
2629
- windows-2022
2730
host:

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,11 @@
6868
"hardenedRuntime": true,
6969
"gatekeeperAssess": false,
7070
"entitlements": "scripts/entitlements.mac.plist",
71-
"entitlementsInherit": "scripts/entitlements.mac.plist"
71+
"entitlementsInherit": "scripts/entitlements.mac.plist",
72+
"target": "dmg"
73+
},
74+
"dmg": {
75+
"writeUpdateInfo": false
7276
},
7377
"linux": {
7478
"artifactName": "${name}-${version}-${os}-${arch}.${ext}",

0 commit comments

Comments
 (0)