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
4 changes: 4 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,10 @@ jobs:
with:
password: ${{ secrets.PYPI_API_TOKEN }}
verify-metadata: false
# 当 PR 多次 push 或并发 CI 跑出相同版本号时,跳过已存在版本而非报错。
# 根因是版本号自增逻辑依赖 PyPI API 拉取最新版本,存在缓存/并发窗口。
# 不阻塞 PR 合入即可,长期方案是在版本号中嵌入 commit SHA 实现唯一化。
skip-existing: true
Comment on lines +166 to +169

- name: Create and push tag
if: steps.changes.outputs.agentrun_changed == 'true'
Expand Down
Loading