Replies: 1 comment 12 replies
-
hmm, everything you described sounds correct. What about the pubkey in tauri.conf.json? Does that match the private key you used to generate the .sig files? |
Beta Was this translation helpful? Give feedback.
12 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I follow the guide to setup updater for my app. I also create a server to handle the updater. I already respond the json data to the app, and then serve the update file for the download endpoint.
Whenever I build the app, I receive two files:
*.app.tar.gz
and*.app.tar.gz.sig
. In the endpoint getlatest-version
, I get the content of*.sig
file and respond to the FE. After the update done, theupdate.downloadAndInstall
will raise InvalidSignature.I don't know why. I tried to re-generate the secret and public key, and still face the same issue.
I am using
TAURI_SIGNING_PRIVATE_KEY_PASSWORD=password TAURI_SIGNING_PRIVATE_KEY=content_from_secret_file pnpm tauri build --target aarch64-apple-darwin --debug
. I am testing the local server, so I need the--debug
Beta Was this translation helpful? Give feedback.
All reactions