Skip to content

Version 1.8.2 (2024/02/05) #8

Version 1.8.2 (2024/02/05)

Version 1.8.2 (2024/02/05) #8

Workflow file for this run

name: Deploy sdist
on:
release:
types:
- published
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Create sdist
shell: bash -l {0}
run: python setup.py sdist
- name: Publish package to PyPI
if: github.event.action == 'published'
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.pypi_password }}