Skip to content

Custom template for release notes (GH action) #11

Custom template for release notes (GH action)

Custom template for release notes (GH action) #11

Workflow file for this run

---
# This workflow builds the Python package and stores it as an artifact for testing during development.
# It only triggers when the 'PR Draft-Release' label is applied to a pull request.
# The built package is NOT pushed to PyPI but is instead stored in a draft GitHub release for reviewers to test.
name: Build draft release, store in GitHub repo only
on:
pull_request:
types: [opened, edited, reopened, synchronize, labeled]
workflow_dispatch:
jobs:
build-draft-release:
runs-on: ubuntu-latest
if: github.event.label.name == 'PR Draft-Release'
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |-
python -m pip install --upgrade pip
pip install build wheel # Ensure both sdist and wheel are built
- name: Get version
id: get_version
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" > dist/version.txt
- name: Build package
run: python -m build # This builds both tar.gz and wheel because wheel is installed
- name: Upload builds and version file
uses: actions/upload-artifact@v3
with:
name: python-package-${{ matrix.python-version }}
path: dist/*
create-draft-release:
runs-on: ubuntu-latest
needs: build-draft-release # This job runs after all matrix jobs complete
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download all builds and version file
uses: actions/download-artifact@v3
with:
path: dist/
- name: Read version from file
id: read_version
run: echo "VERSION=$(cat dist/version.txt)" >> $GITHUB_OUTPUT
- name: Create release
id: create_release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body: 'Pre-release for PR #${{ github.event.number }} - Version ${{ steps.read_version.outputs.VERSION }}'
name: Version ${{ env.VERSION }}-pr${{ github.event.number }}
draft: true # Keeps the release as a draft until published
prerelease: true # Marks it as a pre-release
files: dist/** # Upload all collected artifacts