From 911005e000b1614693a79c333e2b7549af71a536 Mon Sep 17 00:00:00 2001 From: Nathan Flurry Date: Thu, 29 Jan 2026 05:38:04 -0800 Subject: [PATCH] fix(ci): copy skills to skills/ directory instead of repo root --- .github/workflows/skills.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/skills.yml b/.github/workflows/skills.yml index 7cdab41bc3..2b3578ae90 100644 --- a/.github/workflows/skills.yml +++ b/.github/workflows/skills.yml @@ -61,13 +61,15 @@ jobs: - name: Copy generated skills run: | + # Ensure skills directory exists + mkdir -p "skills-repo/skills" + # Only delete and replace the specific skill directories being updated - rm -rf "skills-repo/rivetkit-typescript" for skill_dir in website/dist/metadata/skills/*/; do skill_name=$(basename "$skill_dir") echo "Updating skill: $skill_name" - rm -rf "skills-repo/$skill_name" - cp -r "$skill_dir" "skills-repo/$skill_name" + rm -rf "skills-repo/skills/$skill_name" + cp -r "$skill_dir" "skills-repo/skills/$skill_name" done - name: Commit and push