Commit
Message
Changed Files (3)
-
modified CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md index cf7012d..102e594 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ ### ⚙️ Miscellaneous Tasks - Fix git push before git tag in release task +- Fix mise generate-schema task ## [0.4.0] - 2026-05-31 ### 🚀 Features -
modified abbaye.toml
diff --git a/abbaye.toml b/abbaye.toml index ab828ae..4f153d2 100644 --- a/abbaye.toml +++ b/abbaye.toml @@ -16,11 +16,11 @@ tag_prefix = "v" [changelog] -[[builders]] # builds the project using cargo build --release +[[builders]] # builds the project using cargo build --release type = "cargo" targets = ["x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl"] -[[builders]] # generates documentation using cargo doc +[[builders]] # generates documentation using cargo doc type = "cargo_doc" no_deps = true @@ -28,9 +28,9 @@ no_deps = true type = "script" script = [ "mkdir -p target", - "cargo run --bin abbaye -- dump-schema > target/abbaye.schema.json" + "cargo run --bin abbaye -- dump-schema > target/abbaye.schema.json", ] outputs = ["target/abbaye.schema.json"] [[builders]] -type = "archive" # creates a compressed tarball of the source code (can be of anything, really) +type = "archive" # creates a compressed tarball of the source code (can be of anything, really) -
modified mise.toml
diff --git a/mise.toml b/mise.toml index 2696261..5f88a1f 100644 --- a/mise.toml +++ b/mise.toml @@ -54,7 +54,7 @@ outputs = ["CHANGELOG.md"] wait_for = ["clean"] description = "generates a JSON schema for abbaye.toml" run = [ - "cargo run --bin abbaye dump-schema > abbaye.schema.json && git add abbaye.schema.json" + "cargo run --bin abbaye dump-schema > abbaye.schema.json && git add abbaye.schema.json", ] outputs = ["abbaye.schema.json"] sources = ["src/**.rs"] @@ -64,7 +64,7 @@ alias = "b" depends = [ "generate-readme", "generate-changelog -o CHANGELOG.md", - "generate-schema" + "generate-schema", ] description = "build the project" run = ["cargo build"]