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]]
name = "openconcho"
version = "0.4.0"
version = "0.5.1"
dependencies = [
"serde",
"serde_json",

View File

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