Skip to content

added kip-existing just-in-case for stable releases too #51

added kip-existing just-in-case for stable releases too

added kip-existing just-in-case for stable releases too #51

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

Check failure on line 45 in .github/workflows/publish-to-test-pypi.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish-to-test-pypi.yml

Invalid workflow file

You have an error in your yaml syntax on line 45