Improve generated output sync workflow

This commit is contained in:
Paul Bakaus
2026-06-08 16:54:11 -07:00
parent 55a54c0fbd
commit 972f5b18be
8 changed files with 286 additions and 123 deletions
+2 -2
View File
@@ -5,7 +5,7 @@
// Usage: node scripts/release.mjs <skill|cli|extension> [--dry-run]
//
// Refuses on a dirty tree, an unpushed HEAD, or a missing changelog entry.
// For the skill component, also reruns `bun run build` and refuses if the
// For the skill component, also reruns `bun run build:release` and refuses if the
// regenerated harness directories drift from what is committed.
import { readFileSync, writeFileSync, unlinkSync, existsSync } from 'node:fs';
@@ -23,7 +23,7 @@ const COMPONENTS = {
tagPrefix: 'skill-v',
label: 'Skill',
changelogLabel: 'v',
buildCmd: 'bun run build',
buildCmd: 'bun run build:release',
artifacts: ['dist/universal.zip'],
postReleaseHint: null,
tweetHeader: (v) => `Impeccable v${v} is out.`,