From e809b4ec70716ee31210589a46cd6604604b79cc Mon Sep 17 00:00:00 2001 From: Charlie Garrison Date: Sun, 10 Aug 2025 15:38:03 +1000 Subject: [PATCH] use correct json path --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a3802fc5..318f5d9a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -279,7 +279,7 @@ jobs: $msiVersion = $originalVersion -replace '[+-].*', '' $configPath = "dui/src-tauri\tauri.conf.json" $config = Get-Content $configPath | ConvertFrom-Json - $config.package.version = $msiVersion + $config.version = $msiVersion $config | ConvertTo-Json -Depth 10 | Set-Content $configPath - name: Install frontend dependencies