Skip to content

update .readthedocs.yml to v2 (#267) #19

update .readthedocs.yml to v2 (#267)

update .readthedocs.yml to v2 (#267) #19

Workflow file for this run

name: Publish Package
permissions:
id-token: write
on:
push:
tags:
- '[0-9]+.[0-9]+.[0-9]+'
jobs:
build-and-publish:
name: Build and publish Python package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install pypa/build
run: |
python -m pip install --upgrade setuptools pip wheel twine
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: |
python -m build --sdist --wheel --outdir dist/ .
twine check --strict dist/*
- name: Publish package to test PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
repository_url: https://test.pypi.org/legacy/
- name: Publish package to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}