Hello,
I'm working on my CI to build my app.
For the app version, I used the version of the package.json:
# tauri.config.json
{
"version": "../package.json",
}
It works, it's convenient and beautiful.
My CI first run a yarn version $(git describe), then I build, and my bundle (NSIS) has the last tag description as version number.
But the program itself (after installation), doesn't have the correct version in the file property "Product Version".
The File Version seems correct though, but cropped (which is fine).
Any idea?