Skip to content

v0.0.23

v0.0.23 #26

name: Python packages linux
on:
release:
types: [published]
jobs:
build:
name: build python packages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: |
python3 -m pip install build twine pip --upgrade
python3 -m build
- env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: twine upload dist/*