Skip to content

Citrine v3.11.6 is released! #16

Citrine v3.11.6 is released!

Citrine v3.11.6 is released! #16

Workflow file for this run

# Cannot use a shared workflow to deploy to PyPI currently: https://github.com/pypi/warehouse/issues/11096
name: Deploy to PyPI
on:
release:
types: [published]
jobs:
publish:
name: Publish package to PyPI
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Build
run: python setup.py sdist bdist_wheel
- name: Publish
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}