2024-04-20 08:53:00 +00:00
|
|
|
name: Build, Test, and Upload Python Package
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- "v*.*.*"
|
|
|
|
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# test:
|
|
|
|
# uses: ./.github/workflows/ubuntu-python-package.yml # use the callable tests job to run tests
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
# needs: [test]
|
|
|
|
|
|
|
|
steps:
|
2024-04-20 09:10:02 +00:00
|
|
|
- name: Update package list
|
|
|
|
run: |
|
|
|
|
sudo apt-get update
|
2024-04-20 08:53:00 +00:00
|
|
|
|
2024-04-20 09:02:18 +00:00
|
|
|
- name: Install git
|
|
|
|
run: |
|
|
|
|
sudo apt-get install -y git
|
|
|
|
|
|
|
|
- name: Checkout repository
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
|
|
|
|
2024-04-20 09:10:02 +00:00
|
|
|
- name: Set up Python 3.10
|
|
|
|
uses: actions/setup-python@v2
|
|
|
|
with:
|
|
|
|
python-version: "3.10"
|
|
|
|
|
|
|
|
- name: Prepare Python environment
|
2024-04-20 08:53:00 +00:00
|
|
|
run: |
|
2024-04-20 09:10:02 +00:00
|
|
|
python -m venv venv
|
|
|
|
. ./venv/bin/activate
|
2024-04-21 10:16:39 +00:00
|
|
|
pip install -U twine cibuildwheel
|
2024-04-20 08:53:00 +00:00
|
|
|
|
2024-04-21 10:16:39 +00:00
|
|
|
- name: Build wheels
|
|
|
|
run: python -m cibuildwheel --output-dir dist
|
|
|
|
# to supply options, put them in 'env', like:
|
|
|
|
env:
|
|
|
|
CIBW_BEFORE_BUILD: ./build_wheel.sh
|
2024-04-20 09:10:02 +00:00
|
|
|
|
2024-04-20 08:53:00 +00:00
|
|
|
- name: Publish to PyPI
|
|
|
|
run: |
|
|
|
|
python -m twine upload --repository pypi --username __token__ --password ${{ secrets.PYPI }} dist/*
|
|
|
|
env:
|
|
|
|
PYPI: ${{ secrets.PYPI }}
|