Skip to content

Bump davidslusser/actions_python_ruff from 1.0.1 to 1.0.2 #75

Bump davidslusser/actions_python_ruff from 1.0.1 to 1.0.2

Bump davidslusser/actions_python_ruff from 1.0.1 to 1.0.2 #75

Workflow file for this run

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
steps:
- uses: actions/checkout@master
- name: Set up Python
uses: actions/setup-python@v5
# with:
# python-version: 3.9
- name: Install pypa/build
run: >-
python -m
pip install
build
twine
--user
- name: Build a binary wheel and a source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Check package metadata
run: >-
twine check dist/*
- name: Publish πŸ“¦ to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true