Skip bundled files during asset preparation in skill-release workflow

This commit is contained in:
David Abutbul
2026-02-05 23:57:55 +02:00
parent 19d0c76449
commit 17311495c2
+6
View File
@@ -301,6 +301,12 @@ jobs:
jq -r '.sbom.files[].path' "$SKILL_PATH/skill.json" > "$TEMPFILE"
while IFS= read -r file; do
# Skip bundled files - they're only for the .skill package
if [[ "$file" == bundled/* ]]; then
echo "Skipping bundled file: $file"
continue
fi
if [ -f "$SKILL_PATH/$file" ]; then
# Flatten directory structure for release assets
cp "$SKILL_PATH/$file" "release-assets/$(basename "$file")"