Citrine v3.11.6 is released! #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |