Fix: absolute path per tarball in package.sh (evita tar in temp dir)
Nightly Build / build (push) Failing after 1m13s
Nightly Build / build (push) Failing after 1m13s
This commit is contained in:
Generated
+15
@@ -2944,6 +2944,20 @@ dependencies = [
|
|||||||
"tracing",
|
"tracing",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "plugin-honcho"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"anyhow",
|
||||||
|
"async-trait",
|
||||||
|
"core-api",
|
||||||
|
"honcho-client",
|
||||||
|
"serde_json",
|
||||||
|
"tokio",
|
||||||
|
"tokio-util",
|
||||||
|
"tracing",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "plugin-mobile-connector"
|
name = "plugin-mobile-connector"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
@@ -4168,6 +4182,7 @@ dependencies = [
|
|||||||
"notify",
|
"notify",
|
||||||
"plugin-comfyui",
|
"plugin-comfyui",
|
||||||
"plugin-elevenlabs",
|
"plugin-elevenlabs",
|
||||||
|
"plugin-honcho",
|
||||||
"plugin-mobile-connector",
|
"plugin-mobile-connector",
|
||||||
"plugin-tailscale-remote",
|
"plugin-tailscale-remote",
|
||||||
"plugin-telegram-bot",
|
"plugin-telegram-bot",
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ members = [
|
|||||||
"crates/plugin-tts-orpheus-3b",
|
"crates/plugin-tts-orpheus-3b",
|
||||||
"crates/plugin-tts-kokoro",
|
"crates/plugin-tts-kokoro",
|
||||||
"crates/plugin-elevenlabs",
|
"crates/plugin-elevenlabs",
|
||||||
|
"crates/plugin-honcho",
|
||||||
"crates/skald-relay-common",
|
"crates/skald-relay-common",
|
||||||
"crates/skald-relay-server",
|
"crates/skald-relay-server",
|
||||||
"crates/skald-relay-client",
|
"crates/skald-relay-client",
|
||||||
@@ -84,3 +85,4 @@ plugin-comfyui = { path = "crates/plugin-comfyui" }
|
|||||||
plugin-tts-orpheus-3b = { path = "crates/plugin-tts-orpheus-3b" }
|
plugin-tts-orpheus-3b = { path = "crates/plugin-tts-orpheus-3b" }
|
||||||
plugin-tts-kokoro = { path = "crates/plugin-tts-kokoro" }
|
plugin-tts-kokoro = { path = "crates/plugin-tts-kokoro" }
|
||||||
plugin-elevenlabs = { path = "crates/plugin-elevenlabs" }
|
plugin-elevenlabs = { path = "crates/plugin-elevenlabs" }
|
||||||
|
plugin-honcho = { path = "crates/plugin-honcho" }
|
||||||
|
|||||||
+1
-1
@@ -78,7 +78,7 @@ chmod 755 "$STAGING/run.sh"
|
|||||||
|
|
||||||
# ── Create tarball ────────────────────────────────────────────────────────────
|
# ── Create tarball ────────────────────────────────────────────────────────────
|
||||||
mkdir -p "$OUTPUT"
|
mkdir -p "$OUTPUT"
|
||||||
TARBALL="${OUTPUT}/${PACKAGE_NAME}.tar.gz"
|
TARBALL="$(cd "$OUTPUT" && pwd)/${PACKAGE_NAME}.tar.gz"
|
||||||
|
|
||||||
cd "$(dirname "$STAGING")"
|
cd "$(dirname "$STAGING")"
|
||||||
tar czf "$TARBALL" "$PACKAGE_NAME"
|
tar czf "$TARBALL" "$PACKAGE_NAME"
|
||||||
|
|||||||
@@ -153,6 +153,7 @@ fn build_plugins() -> Vec<Arc<dyn Plugin>> {
|
|||||||
Arc::new(plugin_tts_orpheus_3b::OrpheusTtsPlugin::new()),
|
Arc::new(plugin_tts_orpheus_3b::OrpheusTtsPlugin::new()),
|
||||||
Arc::new(plugin_tts_kokoro::KokoroTtsPlugin::new()),
|
Arc::new(plugin_tts_kokoro::KokoroTtsPlugin::new()),
|
||||||
Arc::new(plugin_elevenlabs::ElevenLabsPlugin::new()),
|
Arc::new(plugin_elevenlabs::ElevenLabsPlugin::new()),
|
||||||
|
Arc::new(plugin_honcho::HonchoPlugin::new()),
|
||||||
];
|
];
|
||||||
#[cfg(feature = "whisper-local")]
|
#[cfg(feature = "whisper-local")]
|
||||||
plugins.push(Arc::new(plugin_transcribe_whisper_local::WhisperLocalPlugin::new()));
|
plugins.push(Arc::new(plugin_transcribe_whisper_local::WhisperLocalPlugin::new()));
|
||||||
|
|||||||
Reference in New Issue
Block a user