From baddb2f13d3cf04a59cce87ee947625c3302b0a4 Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Sat, 27 Jun 2026 11:37:41 +0800 Subject: [PATCH] fix(ci): package runtime asset without recursive dist copy --- .github/workflows/runtime-release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/runtime-release.yaml b/.github/workflows/runtime-release.yaml index 0dda2f2..2d1a3fc 100644 --- a/.github/workflows/runtime-release.yaml +++ b/.github/workflows/runtime-release.yaml @@ -41,10 +41,10 @@ jobs: run: | set -euo pipefail root="dist/runtime/openclaw-multi-session-plugins" - mkdir -p "${root}" dist/assets + mkdir -p "${root}/dist" dist/assets # Maintain necessary file structure required by openclaw loader - cp -a dist "${root}/" + cp -a dist/index.js dist/index.d.ts dist/src "${root}/dist/" cp openclaw.plugin.json package.json "${root}/" tar -czf "dist/assets/openclaw-multi-session-plugins-runtime-all.tar.gz" \