Fix bread-theme/bread-utils dependency: path -> git (broke bakery CI)
The path dependency on ../../bread-ecosystem/bread-theme (and bread-utils) assumed a sibling checkout that doesn't exist on the CI runner — this was the actual cause of release.yml never having succeeded, on top of the Tauri build-path issue fixed separately. Switched to a git dependency pinned to branch = "main" rather than a tag, since the functions this migration needs (css_custom_properties/css_tokens) aren't in a tagged bread-theme release yet. Verified with a full local build.
This commit is contained in:
parent
b1429784a7
commit
78fb01fa77
2 changed files with 7 additions and 4 deletions
2
src/Cargo.lock
generated
2
src/Cargo.lock
generated
|
|
@ -307,6 +307,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "bread-theme"
|
||||
version = "0.3.1"
|
||||
source = "git+https://github.com/Breadway/bread-ecosystem?branch=main#afa3686e9acf348bc86d62b64a7b9be16739ac40"
|
||||
dependencies = [
|
||||
"dirs 5.0.1",
|
||||
"serde",
|
||||
|
|
@ -316,6 +317,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "bread-utils"
|
||||
version = "0.3.1"
|
||||
source = "git+https://github.com/Breadway/bread-ecosystem?branch=main#afa3686e9acf348bc86d62b64a7b9be16739ac40"
|
||||
dependencies = [
|
||||
"dirs 5.0.1",
|
||||
"serde",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue