Release v3.2.4 — install.sh data-loss fix #13
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release Kit | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
| with: | |
| node-version: 22 | |
| - name: Validate agent parity | |
| run: node .claude/skills/vc-audit-vc/scripts/validate-agent-parity.mjs | |
| - name: Validate skills | |
| run: node .claude/skills/vc-audit-vc/scripts/validate-skills.mjs | |
| - name: Validate guide sync | |
| run: node .claude/skills/vc-audit-vc/scripts/validate-guide-sync.mjs | |
| - name: Validate protocol wiring | |
| run: node .claude/skills/vc-audit-vc/scripts/validate-protocol-wiring.mjs | |
| - name: Validate seeds | |
| run: node .claude/skills/vc-audit-vc/scripts/validate-seeds.mjs | |
| - name: Validate context discovery | |
| run: node .claude/skills/vc-audit-context/scripts/validate-context-discovery.mjs | |
| - name: Validate skill routing | |
| run: node .claude/skills/vc-audit-context/scripts/validate-skill-routing.mjs | |
| - name: Validate skill cross-refs | |
| run: node .claude/skills/vc-audit-context/scripts/validate-skill-cross-refs.mjs | |
| - name: Validate skill dependencies | |
| run: node .claude/skills/vc-audit-context/scripts/validate-skill-dependencies.mjs | |
| - name: Validate confusable skills | |
| run: node .claude/skills/vc-audit-context/scripts/validate-confusable-skills.mjs | |
| - name: Generate skills catalog | |
| run: node .claude/skills/vc-audit-context/scripts/generate-skills-catalog.mjs | |
| - name: Validate plan inventory | |
| run: node .claude/skills/vc-audit-plans/scripts/validate-plan-inventory.mjs | |
| - name: Validate all context | |
| run: node .claude/skills/vc-generate-context/scripts/validate-all-context.mjs | |
| - name: Validate skill invocation wiring | |
| run: node .claude/skills/vc-audit-vc/scripts/validate-skill-invocation-wiring.mjs | |
| - name: Validate protocol discovery | |
| run: node .claude/skills/vc-audit-context/scripts/validate-protocol-discovery.mjs | |
| - name: Validate skill keywords | |
| run: node .claude/skills/vc-audit-context/scripts/validate-skill-keywords.mjs | |
| - name: Validate plan artifacts (if any) | |
| run: | | |
| PLANS=$(find process/general-plans/active process/features/*/active -name '*_PLAN_*' -type f 2>/dev/null) | |
| if [ -n "$PLANS" ]; then | |
| echo "$PLANS" | xargs -I {} node .claude/skills/vc-generate-plan/scripts/validate-plan-artifact.mjs {} | |
| else | |
| echo "No active plan artifacts found, skipping." | |
| fi | |
| - name: Check for personal path leaks | |
| run: node .claude/skills/vc-audit-vc/scripts/validate-kit-portability.mjs | |
| - name: Lint Markdown (non-blocking) | |
| run: npx markdownlint-cli2 '**/*.md' '#node_modules' || true | |
| - name: Extract version | |
| id: version | |
| run: echo "version=${GITHUB_REF_NAME#v}" >> "$GITHUB_OUTPUT" | |
| - name: Create GitHub Release | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| gh release create "$GITHUB_REF_NAME" \ | |
| --title "vibecode-pro-max-kit ${{ steps.version.outputs.version }}" \ | |
| --generate-notes |