build: add release script, MSI+NSIS dual bundle, artifacts versioned dir

This commit is contained in:
2026-07-19 14:01:59 +08:00
parent 8357bf016d
commit 1bc2da9c20
4 changed files with 50 additions and 9 deletions
+10 -4
View File
@@ -2,7 +2,7 @@
"$schema": "https://raw.githubusercontent.com/nicegui-org/nicegui-tauri/main/tauri.conf.schema.json",
"productName": "AI阅卷助手",
"version": "1.0.0",
"identifier": "com.ai-grading-assistant.app",
"identifier": "com.aigrading.assistant",
"build": {
"frontendDist": "../dist",
"devUrl": "http://localhost:5173",
@@ -17,11 +17,17 @@
},
"bundle": {
"active": true,
"targets": "all",
"targets": ["msi", "nsis"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png"
]
"icons/128x128@2x.png",
"icons/icon.ico"
],
"windows": {
"wix": {
"language": "zh-CN"
}
}
}
}