fix(ci): make sure we build web before we build the app

This commit is contained in:
Offending Commit
2026-04-28 14:52:09 -05:00
parent 4aeae6b12f
commit c3b4e58816
2 changed files with 35 additions and 34 deletions

View File

@@ -2225,7 +2225,7 @@ dependencies = [
[[package]] [[package]]
name = "openconcho" name = "openconcho"
version = "0.4.0" version = "0.5.1"
dependencies = [ dependencies = [
"serde", "serde",
"serde_json", "serde_json",

View File

@@ -1,35 +1,36 @@
{ {
"$schema": "https://schema.tauri.app/config/2.json", "$schema": "https://schema.tauri.app/config/2.json",
"productName": "OpenConcho", "productName": "OpenConcho",
"identifier": "com.offendingcommit.openconcho", "identifier": "com.offendingcommit.openconcho",
"build": { "build": {
"frontendDist": "../../web/dist", "frontendDist": "../../web/dist",
"devUrl": "http://localhost:5173", "devUrl": "http://localhost:5173",
"beforeDevCommand": "pnpm --filter @openconcho/web dev" "beforeDevCommand": "pnpm turbo --filter @openconcho/web dev",
}, "beforeBuildCommand": "pnpm turbo --filter @openconcho/web build"
"bundle": { },
"active": true, "bundle": {
"targets": "all", "active": true,
"icon": [ "targets": "all",
"icons/32x32.png", "icon": [
"icons/128x128.png", "icons/32x32.png",
"icons/128x128@2x.png", "icons/128x128.png",
"icons/icon.icns", "icons/128x128@2x.png",
"icons/icon.ico" "icons/icon.icns",
] "icons/icon.ico"
}, ]
"app": { },
"windows": [ "app": {
{ "windows": [
"title": "OpenConcho", {
"width": 1280, "title": "OpenConcho",
"height": 800, "width": 1280,
"minWidth": 800, "height": 800,
"minHeight": 600 "minWidth": 800,
} "minHeight": 600
], }
"security": { ],
"csp": null "security": {
} "csp": null
} }
}
} }