From bddb833cbaa322ff89d07e490530860aa73a4293 Mon Sep 17 00:00:00 2001 From: Matt Pocock Date: Wed, 17 Jun 2026 15:46:32 +0100 Subject: [PATCH] fix: create GitHub releases on version bump Add `publish: npx changeset tag` to the release workflow and enable tagging for private packages in the changesets config, so merging a Version PR creates a git tag and GitHub release. Co-Authored-By: Claude Opus 4.8 (1M context) --- .changeset/config.json | 1 + .github/workflows/release.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.changeset/config.json b/.changeset/config.json index 24fd08f..06c7350 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -5,6 +5,7 @@ { "repo": "mattpocock/skills" } ], "commit": false, + "privatePackages": { "version": true, "tag": true }, "fixed": [], "linked": [], "access": "restricted", diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a385441..5b057b0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,7 @@ jobs: uses: changesets/action@v1 with: version: npx changeset version + publish: npx changeset tag commit: "chore: version skills" title: "chore: version skills" env: