mirror of
https://github.com/kjuulh/dagger-rs.git
synced 2024-11-08 11:01:47 +01:00
44 lines
798 B
TOML
44 lines
798 B
TOML
[tasks.codegen]
|
|
command = "cargo"
|
|
args = ["run", "-p", "ci", "--", "codegen"]
|
|
workspace = false
|
|
|
|
[tasks.build]
|
|
command = "cargo"
|
|
args = ["run", "-p", "ci", "--", "ci"]
|
|
dependencies = ["codegen"]
|
|
workspace = false
|
|
|
|
[tasks.fmt]
|
|
command = "cargo"
|
|
args = ["fmt", "--all"]
|
|
workspace = false
|
|
|
|
[tasks.fix]
|
|
command = "cargo"
|
|
args = ["fix", "--workspace", "--allow-dirty"]
|
|
dependencies = ["fmt"]
|
|
workspace = false
|
|
|
|
[tasks.release_crate]
|
|
command = "cargo"
|
|
args = [
|
|
"smart-release",
|
|
"--allow-fully-generated-changelogs",
|
|
"--update-crates-index",
|
|
"dagger-sdk",
|
|
]
|
|
dependencies = ["codegen", "fix"]
|
|
workspace = false
|
|
|
|
[tasks.release_crate_commit]
|
|
command = "cargo"
|
|
args = [
|
|
"smart-release",
|
|
"-e",
|
|
"--allow-fully-generated-changelogs",
|
|
"--update-crates-index",
|
|
"dagger-sdk",
|
|
]
|
|
workspace = false
|