Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
actual-vt-capstone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
danieljk
actual-vt-capstone
Commits
e906b965
Commit
e906b965
authored
2 years ago
by
Tom French
Committed by
James Long
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
docs: add comment explaining how to reactivate code signing
parent
d6eb0d9d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/desktop-electron/afterSignHook.js
+6
-0
6 additions, 0 deletions
packages/desktop-electron/afterSignHook.js
with
6 additions
and
0 deletions
packages/desktop-electron/afterSignHook.js
+
6
−
0
View file @
e906b965
...
@@ -2,6 +2,12 @@ const fs = require('fs');
...
@@ -2,6 +2,12 @@ const fs = require('fs');
const
path
=
require
(
'
path
'
);
const
path
=
require
(
'
path
'
);
var
electron_notarize
=
require
(
'
electron-notarize
'
);
var
electron_notarize
=
require
(
'
electron-notarize
'
);
// This is expected to be run by `electron-builder` after it signs the build.
// It's disabled for now as we currently don't sign builds after Actual being open sourced.
// To start signing builds again:
// - add the property `"afterSign": "./afterSignHook.js"` to the `build` object in package.json.
// - add the property `"certificateSubjectName": "Shift Reset LLC"` (or similar) to the `win` object in package.json.
module
.
exports
=
async
function
(
params
)
{
module
.
exports
=
async
function
(
params
)
{
// Only notarize the app on Mac OS only.
// Only notarize the app on Mac OS only.
if
(
process
.
platform
!==
'
darwin
'
||
process
.
env
[
'
SKIP_NOTARIZATION
'
])
{
if
(
process
.
platform
!==
'
darwin
'
||
process
.
env
[
'
SKIP_NOTARIZATION
'
])
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment