Skip to content

Commit bfb6a08

Browse files
authored
[CI] Setup macOS DMG Signing (#143)
* feat: add macOS signing configuration and files * feat: add notarization script * fix: update workflow with teamid * chore: try to run action on branch * chore: bump version * fix: checkout submodules * chore: fix lint * chore: another try * fix: variables * fix: add GH_TOKEN var * chore: try again with new token * other: upload build for test signing * chore: bump version * other: update entitlements and build only * Update release_macOS.yml * ci: build only on new tag * chore: replace deprecated package
1 parent 10ad6f4 commit bfb6a08

8 files changed

+91
-5
lines changed

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ flatpak/.flatpak-builder/
44
vite.config.ts
55
**/__tests__/**
66
**/__mocks__/**
7+
sign/**

.github/workflows/release_macOS.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Build and Release macOS HP version
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
workflow_dispatch:
8+
9+
env:
10+
CSC_IDENTITY_AUTO_DISCOVERY: true
11+
CSC_LINK: ${{ secrets.CSC_LINK }}
12+
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
13+
APPLE_ID: ${{ secrets.APPLEID }}
14+
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLEIDPASS }}
15+
TEAMID: ${{ secrets.TEAMID }}
16+
GH_TOKEN: ${{ secrets.WORKFLOW_TOKEN }}
17+
18+
jobs:
19+
build-and-release:
20+
runs-on: macos-latest
21+
22+
steps:
23+
- name: Checkout code
24+
uses: actions/checkout@v3
25+
with:
26+
submodules: 'recursive'
27+
token: ${{ secrets.pat }}
28+
29+
- name: Install dependencies
30+
run: yarn install
31+
32+
- name: Set up Node.js
33+
uses: actions/setup-node@v3
34+
with:
35+
node-version: '16'
36+
37+
- name: Build artifacts.
38+
run: yarn release:mac --arm64

.prettierignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ build
44
coverage
55
public/locales/
66
flatpak
7-
extensions/
7+
extensions/
8+
sign/

package.json

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperplay",
3-
"version": "0.0.3-alpha.1",
3+
"version": "0.0.3-alpha.2",
44
"private": true,
55
"main": "build/electron/main.js",
66
"homepage": "./",
@@ -15,8 +15,9 @@
1515
"email": "hyperplay@hyperplay.gg"
1616
},
1717
"build": {
18-
"appId": "com.electron.hyperplay",
18+
"appId": "gg.hyperplay.HyperPlay",
1919
"productName": "HyperPlay",
20+
"afterSign": "sign/notarize.js",
2021
"files": [
2122
"build/**/*",
2223
"node_modules/**/*",
@@ -55,9 +56,13 @@
5556
},
5657
"mac": {
5758
"artifactName": "${productName}-${version}-macOS-${arch}.${ext}",
58-
"target": "dmg",
5959
"category": "public.app-category.games",
6060
"icon": "build/app_icon.icns",
61+
"entitlements": "build/entitlements.mac.plist",
62+
"entitlementsInherit": "build/entitlements.mac.plist",
63+
"extendInfo": {
64+
"com.apple.security.cs.allow-jit": true
65+
},
6166
"asarUnpack": [
6267
"build/bin/darwin/legendary",
6368
"build/bin/darwin/gogdl"
@@ -216,6 +221,7 @@
216221
]
217222
},
218223
"devDependencies": {
224+
"@electron/notarize": "^1.2.3",
219225
"@testing-library/dom": "^7.31.0",
220226
"@testing-library/jest-dom": "^5.16.4",
221227
"@testing-library/react": "^13.1.1",

public/entitlements.mac.plist

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN"
2+
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>com.apple.security.cs.allow-jit</key>
6+
<true/>
7+
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
8+
<true/>
9+
<key>com.apple.security.cs.disable-library-validation</key>
10+
<true/>
11+
</dict>
12+
</plist>

sign/notarize.js

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
require('dotenv').config()
2+
const { notarize } = require('electron-notarize')
3+
4+
exports.default = async function notarizing(context) {
5+
const { electronPlatformName, appOutDir } = context
6+
if (electronPlatformName !== 'darwin') {
7+
return
8+
}
9+
10+
const appName = context.packager.appInfo.productFilename
11+
12+
return await notarize({
13+
tool: 'notarytool',
14+
appBundleId: 'gg.hyperplay.HyperPlay',
15+
appPath: `${appOutDir}/${appName}.app`,
16+
teamId: process.env.TEAMID,
17+
appleId: process.env.APPLE_ID,
18+
appleIdPassword: process.env.APPLE_APP_SPECIFIC_PASSWORD
19+
})
20+
}

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
"strictPropertyInitialization": true
3535
},
3636
"include": ["src"],
37-
"exclude": ["vite.config.ts", "**/__tests__/**", "**/__mocks__/**"]
37+
"exclude": ["vite.config.ts", "**/__tests__/**", "**/__mocks__/**", "sign"]
3838
}

yarn.lock

+8
Original file line numberDiff line numberDiff line change
@@ -518,6 +518,14 @@
518518
global-agent "^3.0.0"
519519
global-tunnel-ng "^2.7.1"
520520

521+
"@electron/notarize@^1.2.3":
522+
version "1.2.3"
523+
resolved "https://registry.yarnpkg.com/@electron/notarize/-/notarize-1.2.3.tgz#38056a629e5a0b5fd56c975c4828c0f74285b644"
524+
integrity sha512-9oRzT56rKh5bspk3KpAVF8lPKHYQrBnRwcgiOeR0hdilVEQmszDaAu0IPCPrwwzJN0ugNs0rRboTreHMt/6mBQ==
525+
dependencies:
526+
debug "^4.1.1"
527+
fs-extra "^9.0.1"
528+
521529
"@electron/universal@1.2.1":
522530
version "1.2.1"
523531
resolved "https://registry.yarnpkg.com/@electron/universal/-/universal-1.2.1.tgz#3c2c4ff37063a4e9ab1e6ff57db0bc619bc82339"

0 commit comments

Comments
 (0)