Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ concurrency:
jobs:
build-and-publish-to-pypi:
timeout-minutes: 8
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Duplicate version upload failure

When a push reaches main before the package version advances beyond the already-published 0.3.0, restoring this runner executes the unguarded publishing step with version 0.3.0, causing PyPI to reject the duplicate upload and the release workflow to fail without publishing anything.

Fix in Claude Code Fix in Conductor Fix in Cursor Fix in Codex

steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
Loading