From 17311495c287f73f7e45912cdc91fa2756dbb4b7 Mon Sep 17 00:00:00 2001 From: David Abutbul Date: Thu, 5 Feb 2026 23:57:55 +0200 Subject: [PATCH] Skip bundled files during asset preparation in skill-release workflow --- .github/workflows/skill-release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/skill-release.yml b/.github/workflows/skill-release.yml index 5c981e9..14b1d32 100644 --- a/.github/workflows/skill-release.yml +++ b/.github/workflows/skill-release.yml @@ -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")"