version + registry
release / build (push) Failing after 46s

This commit is contained in:
lda
2026-04-14 07:34:39 +07:00 Unverified
parent 9ffa6ce5e6
commit a1a401ff57
4 changed files with 10 additions and 5 deletions
+5
View File
@@ -47,6 +47,11 @@ cargo build --release
# Publish crate (only if -Publish and registry auth is available)
# Publish crate (only if -Publish). Relies on your Cargo config/credentials.
if ($Publish) {
if (-not $Registry) {
$Registry = 'gitea'
Write-Host 'No -Registry provided; defaulting publish target to registry: gitea'
}
$publishOrder = @(
'lda-ipjs',
'wakey-core',
+2 -2
View File
@@ -38,5 +38,5 @@ tracing-subscriber = { version = "0.3", features = [
] }
time = { version = "0.3", features = ["formatting", "local-offset"] }
url = "2"
wakey = { path = "..", registry = "gitea" }
wakey-core = { path = "../wakey-core", registry = "gitea" }
wakey = { path = "..", registry = "gitea", version = "0" }
wakey-core = { path = "../wakey-core", registry = "gitea", version = "0" }
+1 -1
View File
@@ -43,4 +43,4 @@ opentelemetry = "0.31"
opentelemetry-otlp = { version = "0.31", features = ["grpc-tonic", "trace"] }
opentelemetry_sdk = { version = "0.31", features = ["rt-tokio"] }
uuid = { version = "1", features = ["v4", "serde"] }
wakey-agent = { path = "../wakey-agent", registry = "gitea" }
wakey-agent = { path = "../wakey-agent", registry = "gitea", version = "0" }
+2 -2
View File
@@ -10,10 +10,10 @@ futures = "0"
macaddr = { version = "1", features = ["serde", "serde_std"] }
serde_json = "1"
tokio = { version = "1", features = ["fs", "net", "rt", "sync"] }
wakey-core = { path = "../wakey-core" }
wakey-core = { path = "../wakey-core", registry = "gitea", version = "0"}
[dependencies.lda-ipjs]
path = "../ipjs"
registry = "gitea"
version = "*"
version = "0"
features = ["experimental-nl"]