Created a new release #86
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish packages to PyPI | |
on: | |
push: | |
tags: | |
- "[0-9]+.[0-9]+.[0-9]+" | |
- "[0-9]+.[0-9]+.[0-9]+.post[0-9]+" | |
- "[0-9]+.[0-9]+.[0-9]+[a-b][0-9]+" | |
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
environment: release | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: pip install flit | |
- name: Create packages | |
run: flit build --setup-py | |
- name: Store package artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
id-token: write | |
steps: | |
- name: Retrieve package artifacts | |
uses: actions/download-artifact@v4 | |
- name: Upload packages | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
release: | |
name: Create a GitHub release | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- id: changelog | |
uses: agronholm/release-notes@v1 | |
with: | |
path: docs/news.rst | |
version_pattern: "^\\*\\*([0-9a-z.]+) " | |
- uses: ncipollo/release-action@v1 | |
with: | |
body: ${{ steps.changelog.outputs.changelog }} |