on:
push:
tags:
- "v*"
name: Create and Publish Release (Python)
env:
GH_TOKEN: ${{ github.token }}
jobs:
build:
name: Build distribution
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install release dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools wheel build
- name: Get release notes
id: release_notes
run: |
# By default, GH Actions checkout will only fetch a single commit.
# For us to extract the release notes, we need to fetch the tags
# and tag annotations as well.
# https://github.com/actions/checkout/issues/290
git fetch --tags --force
TAG_NAME=${GITHUB_REF/refs\/tags\//}
echo "$(git tag -l --format='%(contents)' $TAG_NAME)" > "${{ runner.temp }}/CHANGELOG.md"
- name: Create GitHub release if needed (Rust will race us)
id: create_release
if: contains(github.ref, 'refs/tags/v')
run: |
if ! gh release view ${{ github.ref_name }}; then
git show -s --format=%B ${{ github.ref_name }} | tail -n +4 | gh release create ${{ github.ref_name }} -t ${{ github.ref_name }} -F -
fi
- name: Build a binary wheel and a source tarball
run: python3 -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist/
publish-to-pypi:
name: >-
Publish Python 🐍 distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags/') needs:
- build
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/gfmetadata/
permissions:
id-token: write steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: python-package-distributions
path: dist/
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verify-metadata: false