ci: publish only after CI check succeeds

Merge release into ci.yml: tag pushes run check then publish (needs:
check). Remove standalone python-publish so PyPI never ships on red CI.
Retag (delete+push v*) still retriggers the pipeline.
This commit is contained in:
2026-07-20 04:44:57 +08:00
parent 7bdd9ff8b7
commit 614ffaaf8f
2 changed files with 48 additions and 45 deletions
+48 -6
View File
@@ -1,11 +1,20 @@
# Single pipeline: CI on main/PRs; on v* tags, publish only after CI succeeds.
# Retagging the same commit (delete + push tag) re-triggers this workflow.
name: CI
on:
push:
branches: [main]
tags: ["v*"]
pull_request:
branches: [main]
# Cancel superseded runs on the same ref (e.g. force-push / retag races).
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
@@ -18,15 +27,14 @@ jobs:
python-version: "3.14"
- name: Install PDM
uses: pdm-project/setup-pdm@v4
with:
python-version: "3.14"
run: pip install pdm
- name: Install dependencies
run: pdm sync --dev
# Locked install so CI matches prek pins / pdm.lock.
run: pdm install --check -G :all
- name: Ruff check
run: pdm run ruff check --output-format=github .
run: pdm run ruff check .
- name: Ruff format
run: pdm run ruff format --check .
@@ -34,5 +42,39 @@ jobs:
- name: basedpyright
run: pdm run basedpyright .
- name: pytest
- name: Pytest
run: pdm run pytest
# Only on version tags, and only after check is green (no publish on red CI).
publish:
needs: check
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.14"
- name: Install PDM
run: pip install pdm
- name: Build package
run: pdm build
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
files: dist/*
generate_release_notes: true
fail_on_unmatched_files: true
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
-39
View File
@@ -1,39 +0,0 @@
name: Release and Publish Python Package
on:
push:
tags:
- "v*"
permissions:
contents: write
id-token: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.14"
- name: Install build
run: python -m pip install --upgrade pip build
- name: Build package
run: python -m build --sdist --wheel --outdir dist/ .
- name: Publish package
uses: pypa/gh-action-pypi-publish@release/v1
- name: Create GitHub release
uses: softprops/action-gh-release@v2
with:
files: |
dist/*
generate_release_notes: true