Skip to content

Build package

Build package #1

Workflow file for this run

# Build package
# Given a tag, downloads the associated code, builds the package, and uploads the binary wheel(s)
# and source tarball as artifacts
# Triggers on: all published releases (incl pre-releases)
name: Build package
on:
release:
types: [published]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build a binary wheel and a source tarball
run: python -m build
- name: Store the distribution packages
uses: actions/upload-artifact@v4.3.0
with:
name: python-package-distributions-${{ github.ref_name }}
path: dist/