Skip to content

Build Python distribution #9

Build Python distribution

Build Python distribution #9

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Build Python distribution
on: workflow_dispatch
permissions:
contents: read
jobs:
build_dist:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", ]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install "setuptools>57.0" wheel
pip list
- name: Build package
run: |
python setup.py sdist bdist_wheel
- uses: actions/upload-artifact@v3
with:
name: packages
path: dist/*