We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16e091c commit 25a8b77Copy full SHA for 25a8b77
bin/sign-windows.js
@@ -0,0 +1,3 @@
1
+export default async function (filePath) {
2
+ console.log(`Path to file to sign: ${filePath}`)
3
+}
forge.config.cjs
@@ -63,7 +63,10 @@ module.exports = {
63
config: {
64
iconUrl: "https://raw.githubusercontent.com/TriliumNext/Notes/develop/images/app-icons/icon.ico",
65
setupIcon: "./images/app-icons/icon.ico",
66
- loadingGif: "./images/app-icons/win/setup-banner.gif"
+ loadingGif: "./images/app-icons/win/setup-banner.gif",
67
+ windowsSign: {
68
+ hookModulePath: "./bin/sign-windows.js"
69
+ }
70
}
71
},
72
{
0 commit comments