Update signature in server JSON #6106
-
Hello, Is it possible to create the JSON like: {
"version": "v0.1.4",
"notes": "",
"pub_date": "2023-01-19T10:48:21Z",
"platforms": {
"darwin-x86_64": {
"signature": "https://github.com/user/repo/releases/download/v0.1.4/my_app.app.tar.gz.sig",
"url": "https://github.com/user/repo/releases/download/v0.1.4/my_app.app.tar.gz"
},
"linux-x86_64": {
"signature": "https://github.com/user/repo/releases/download/v0.1.4/my_app_v0.1.4_amd64.AppImage.tar.gz.sig",
"url": "https://github.com/user/repo/releases/download/v0.1.4/my_app_v0.1.4_amd64.AppImage.tar.gz "
},
"windows-x86_64": {
"signature": "https://github.com/user/repo/releases/download/v0.1.4/my_app_0.1.4_x64_en-US.msi.zip.sig",
"url": "https://github.com/user/repo/releases/download/v0.1.4/my_app_0.1.4_x64_en-US.msi.zip"
}
}
} Or how do you fill this signature automatically? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
If you use tauri-action from git (via Also, the signature is not an url or path to the .sig, but the actual content of that file as a string! |
Beta Was this translation helpful? Give feedback.
If you use tauri-action from git (via
tauri-apps/tauri-action@dev
) it can automatically generate this file for you, there mayyy be some bugs that still need to be ironed out.Also, the signature is not an url or path to the .sig, but the actual content of that file as a string!