Tauri Signer Workspace Not Found #5754
-
(1) I am trying to use the Tauri CLI to sign updates as described here.
(The folder The CLI works without the (2) Also, here it mentions that the
But no (3) Is it possible to use the Updater functionality without having Code signed the application? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
This comment was marked as off-topic.
This comment was marked as off-topic.
-
1: You need a set of npm run tauri signer generate -- -w ~/.tauri/myapp.key p.s. i'm rewriting the guide rn so that will be clearer soon. 2: Once you set the keys and the updater up it will generate the sig files. 3: Yes, the .sig files and tauri keys are not related to code signing. It's just to verify the updater bundles after downloading them. If you actually mean this and not real code signing then no, it's required. |
Beta Was this translation helpful? Give feedback.
1: You need a set of
--
to tell npm to forward the args to Tauri:npm run tauri signer generate -- -w ~/.tauri/myapp.key
p.s. i'm rewriting the guide rn so that will be clearer soon.
2: Once you set the keys and the updater up it will generate the sig files.
3: Yes, the .sig files and tauri keys are not related to code signing. It's just to verify the updater bundles after downloading them. If you actually mean this and not real code signing then no, it's required.