From 4847be75ec07e7d402791031bb4a86f399f19444 Mon Sep 17 00:00:00 2001 From: doug <110487462+doughayden@users.noreply.github.com> Date: Sat, 28 Jun 2025 14:07:03 -0400 Subject: [PATCH] fix: remove push=false blocking VCS releases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove push=false from pyproject.toml config - Remove push=false from workflow parameters - Keep commit=false to prevent version bump commits - Allow semantic-release to create tags and GitHub releases 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .github/workflows/release.yml | 1 - pyproject.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3bb283..db6b709 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,7 +73,6 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} root_options: "-vv" commit: "false" - push: "false" tag: "true" vcs_release: "true" diff --git a/pyproject.toml b/pyproject.toml index 35e4b55..24a25e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,7 +75,6 @@ remove_dist = false major_on_zero = false tag_format = "v{version}" commit = false -push = false tag = true vcs_release = true