Skip to content

<FIX> Fixing PR comments #59

<FIX> Fixing PR comments

<FIX> Fixing PR comments #59

name: Publish to TestPyPI
on: push
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to 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