ci: switch api server as main package for release please (#473)

This commit is contained in:
Paul Makles
2026-01-08 22:24:45 +00:00
committed by GitHub
parent a7b870c397
commit ffdb2b6900
2 changed files with 89 additions and 21 deletions

View File

@@ -1,3 +1,3 @@
{ {
".": "0.8.8" "crates/delta": "0.8.8"
} }

View File

@@ -1,31 +1,99 @@
{ {
"include-component-in-tag": false,
"packages": { "packages": {
".": { "crates/delta": {
"changelog-path": "CHANGELOG.md", "changelog-path": "../../CHANGELOG.md",
"release-type": "rust", "release-type": "rust",
"bump-minor-pre-major": false, "bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false, "bump-patch-for-minor-pre-major": false,
"draft": false, "draft": false,
"prerelease": false, "prerelease": false,
"extra-files": [ "extra-files": [
"crates/bonfire/Cargo.toml", {
"crates/core/coalesced/Cargo.toml", "type": "toml",
"crates/core/config/Cargo.toml", "path": "crates/bonfire/Cargo.toml",
"crates/core/database/Cargo.toml", "jsonpath": "$.package.version"
"crates/core/files/Cargo.toml", },
"crates/core/models/Cargo.toml", {
"crates/core/parser/Cargo.toml", "type": "toml",
"crates/core/permissions/Cargo.toml", "path": "crates/core/coalesced/Cargo.toml",
"crates/core/presence/Cargo.toml", "jsonpath": "$.package.version"
"crates/core/ratelimits/Cargo.toml", },
"crates/core/result/Cargo.toml", {
"crates/daemons/crond/Cargo.toml", "type": "toml",
"crates/daemons/pushd/Cargo.toml", "path": "crates/core/config/Cargo.toml",
"crates/daemons/voice-ingress/Cargo.toml", "jsonpath": "$.package.version"
"crates/delta/Cargo.toml", },
"crates/services/autumn/Cargo.toml", {
"crates/services/gifbox/Cargo.toml", "type": "toml",
"crates/services/january/Cargo.toml" "path": "crates/core/database/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/core/files/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/core/models/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/core/parser/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/core/permissions/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/core/presence/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/core/ratelimits/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/core/result/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/daemons/crond/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/daemons/pushd/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/daemons/voice-ingress/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/services/autumn/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/services/gifbox/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/services/january/Cargo.toml",
"jsonpath": "$.package.version"
}
] ]
} }
}, },