#Self signing Tauri app

1 messages · Page 1 of 1 (latest)

eager saffron
#

Hi there,

When self signing the app through tauri.conf.json, we're left with these options;

"windows": { "certificateThumbprint": null, "digestAlgorithm": "sha256", "timestampUrl": "" },

Where can I, if possible, put down my company name? I'd rather not have it be signed as "YourCompanyName", self signed or not.

Cheers!

#

Also... is it possible to not have it sign .exes that I sideload?

bronze yoke
#

This is something I'm interested in as well

royal terrace
#

Also... is it possible to not have it sign .exes that I sideload?
run $env:TAURI_SKIP_SIDECAR_SIGNATURE_CHECK="true" (or however you set env vars in your shell) before building the app.

eager saffron
eager saffron
#

I'll try to do it exactly like that gist in a minute, seems to have some extra steps

eager saffron
royal terrace
#

the sidecar one? you could modify the tauri script in package.json (if you use npm or similar)

#

beforeBuildCommand for example won't work either

#

it's the tauri cli itself that needs the env var so the outer most invocation needs the env var set already, which really only leaves us with the script option