added kip-existing just-in-case for stable releases too #51
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 Python π distributions π¦ to PyPI and TestPyPI | ||
on: push | ||
jobs: | ||
build-n-publish: | ||
name: Build and publish Python π distributions π¦ to PyPI and TestPyPI | ||
runs-on: ubuntu-latest | ||
permissions: | ||
id-token: write | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@master | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python 3.10 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.10" | ||
- name: Install pypa/build | ||
run: | | ||
pip install build --user | ||
pip install . | ||
- name: Install pypa/pdoc | ||
run: >- | ||
python -m | ||
pip install | ||
.[dev] | ||
--user | ||
- name: Generate documentation with pdoc | ||
run: python -m pdoc -o docs -n pysmart_exporter | ||
- name: Build the binary wheel and source tarball | ||
run: python -m build --sdist --wheel --outdir dist/ | ||
- name: Publish distribution π¦ to Test PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
repository-url: https://test.pypi.org/legacy/ | ||
skip-existing: true | ||
- name: Publish distribution π¦ to PyPI | ||
if: startsWith(github.ref, 'refs/tags') || github.ref == 'refs/heads/main' | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
skip-existing: true | ||