From 5928713b6bd46a8297230b90fc77bc6e6160b7bd Mon Sep 17 00:00:00 2001 From: doug <110487462+doughayden@users.noreply.github.com> Date: Sat, 28 Jun 2025 13:50:51 -0400 Subject: [PATCH] fix: add workflow params for tag-only release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add commit=false, push=false parameters to workflow - Override pyproject.toml config at action level - Ensure semantic-release respects tag-only mode 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3795f6e..c3bb283 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,4 +72,8 @@ jobs: with: github_token: ${{ secrets.GITHUB_TOKEN }} root_options: "-vv" + commit: "false" + push: "false" + tag: "true" + vcs_release: "true"