@wipcomputer/wip-release 1.9.34 → 1.9.36

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/core.mjs +6 -10
  2. package/package.json +1 -1
package/core.mjs CHANGED
@@ -941,7 +941,7 @@ export async function release({ repoPath, level, notes, notesSource, dryRun, noP
941
941
  console.log(` [dry run] Would commit and tag v${newVersion}`);
942
942
  if (!noPublish) {
943
943
  console.log(` [dry run] Would publish to npm (@wipcomputer scope)`);
944
- console.log(` [dry run] Would publish to GitHub Packages`);
944
+ console.log(` [dry run] GitHub Packages: handled by deploy-public.sh`);
945
945
  console.log(` [dry run] Would create GitHub release v${newVersion}`);
946
946
  if (hasSkill) console.log(` [dry run] Would publish to ClawHub`);
947
947
  // Skill-to-website dry run (auto-detects SKILL.md, no config needed)
@@ -1043,15 +1043,11 @@ export async function release({ repoPath, level, notes, notesSource, dryRun, noP
1043
1043
  console.log(` ✗ npm publish failed: ${e.message}`);
1044
1044
  }
1045
1045
 
1046
- // 7. GitHub Packages
1047
- try {
1048
- publishGitHubPackages(repoPath);
1049
- distResults.push({ target: 'GitHub Packages', status: 'ok', detail: `${newVersion}` });
1050
- console.log(` Published to GitHub Packages`);
1051
- } catch (e) {
1052
- distResults.push({ target: 'GitHub Packages', status: 'failed', detail: e.message });
1053
- console.log(` ✗ GitHub Packages publish failed: ${e.message}`);
1054
- }
1046
+ // 7. GitHub Packages ... SKIPPED from private repos.
1047
+ // deploy-public.sh publishes to GitHub Packages from the public repo clone.
1048
+ // Publishing from private ties the package to the private repo, making it
1049
+ // invisible on the public repo's Packages tab. (#53)
1050
+ console.log(` - GitHub Packages: handled by deploy-public.sh (from public repo)`);
1055
1051
 
1056
1052
  // 8. GitHub release
1057
1053
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wipcomputer/wip-release",
3
- "version": "1.9.34",
3
+ "version": "1.9.36",
4
4
  "type": "module",
5
5
  "description": "One-command release pipeline. Bumps version, updates changelog + SKILL.md, publishes to npm + GitHub.",
6
6
  "main": "core.mjs",