0382c4e302
Pushing v* tag now triggers:
1. release.yml — creates a GitHub Release (published, not draft),
pulling the release notes from CHANGELOG.md automatically.
2. CI.yml (release: published event) — builds wheels for Linux /
macOS / Windows × Python 3.10-3.13, sdist, publishes to PyPI
via trusted publisher, publishes ferro_ta_core to crates.io,
and generates SBOMs.
Pre-release tags (e.g. v1.1.0-rc.1) are marked as pre-release on
GitHub automatically.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
57 lines
1.6 KiB
YAML
57 lines
1.6 KiB
YAML
name: Release
|
|
|
|
# Triggered when a version tag is pushed (e.g. v1.0.2).
|
|
# Creates a GitHub Release marked as "published", which in turn
|
|
# triggers the build-wheels and publish jobs in CI.yml.
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- "v[0-9]+.[0-9]+.[0-9]+"
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
create-release:
|
|
name: Create GitHub Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Extract version from tag
|
|
id: version
|
|
run: |
|
|
VERSION="${GITHUB_REF_NAME#v}"
|
|
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Extract changelog entry for this version
|
|
id: changelog
|
|
env:
|
|
TAG_NAME: ${{ github.ref_name }}
|
|
run: |
|
|
python3 - <<'PY'
|
|
import re, os, pathlib
|
|
|
|
version = os.environ["TAG_NAME"].lstrip("v")
|
|
text = pathlib.Path("CHANGELOG.md").read_text(encoding="utf-8")
|
|
|
|
pattern = rf"## \[{re.escape(version)}\].*?\n(.*?)(?=\n## |\Z)"
|
|
match = re.search(pattern, text, re.DOTALL)
|
|
body = match.group(1).strip() if match else f"Release {version}"
|
|
|
|
with open(os.environ["GITHUB_OUTPUT"], "a") as f:
|
|
f.write(f"body<<EOF\n{body}\nEOF\n")
|
|
PY
|
|
|
|
- name: Create GitHub Release
|
|
uses: softprops/action-gh-release@v2
|
|
with:
|
|
tag_name: ${{ github.ref_name }}
|
|
name: v${{ steps.version.outputs.version }}
|
|
body: ${{ steps.changelog.outputs.body }}
|
|
draft: false
|
|
prerelease: ${{ contains(github.ref_name, '-') }}
|