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
name: Publish spectrum_fundamentals to PyPI | |
on: | |
release: | |
types: [published] | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v2.3.4 | |
with: | |
fetch-depth: 2 | |
- name: Set up Python | |
uses: actions/setup-python@v4.3.0 | |
with: | |
python-version: "3.9" | |
- name: Install Poetry | |
run: | | |
pip install poetry | |
poetry --version | |
- name: Build package | |
run: | | |
poetry build --ansi | |
- name: Publish package on PyPI | |
uses: pypa/gh-action-pypi-publish@v1.6.4 | |
with: | |
# TODO COOKIETEMPLE: Configure your PyPI Token to enable automatic deployment to PyPi on releases | |
# https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} |