Skip to content

Merge pull request #77 from wmayner/fix/ci-builds #66

Merge pull request #77 from wmayner/fix/ci-builds

Merge pull request #77 from wmayner/fix/ci-builds #66

Workflow file for this run

name: Make source distribution
on: ['push', 'pull_request']
jobs:
make_sdist:
name: Make source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y python3-dev
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Build source distribution
run: |
pip install build
python -m build --sdist
- uses: actions/upload-artifact@v4
with:
name: sdist
path: dist/*.tar.gz