Skip to content

Commit ef7bfc2

Browse files
committed
ci(publish): expect 16 relay skills in validation check
Update the publish workflow’s skill-count guard from 15 to 16 so CI matches the current number of `.claude/skills/relay-*` entries and avoids incorrect publish failures.ci(publish): expect 16 relay skills in validation check Update the publish workflow’s skill-count guard from 15 to 16 so CI matches the current number of `.claude/skills/relay-*` entries and avoids incorrect publish failures.
1 parent 05b293d commit ef7bfc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
run: |
3232
SKILL_COUNT=$(ls -d .claude/skills/relay-*/ | wc -l)
3333
echo "Found $SKILL_COUNT relay skills"
34-
if [ "$SKILL_COUNT" -ne 15 ]; then
35-
echo "Error: Expected 15 relay skills, found $SKILL_COUNT"
34+
if [ "$SKILL_COUNT" -ne 16 ]; then
35+
echo "Error: Expected 16 relay skills, found $SKILL_COUNT"
3636
exit 1
3737
fi
3838

0 commit comments

Comments
 (0)