Skip to content

Version 0.5.1 (2023/10/09) #4

Version 0.5.1 (2023/10/09)

Version 0.5.1 (2023/10/09) #4

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/gh-action-pypi-publish@v1.8.10
with:
user: __token__
password: ${{ secrets.pypi_password }}