Skip to content

chore(deps): update pre-commit hook psf/black-pre-commit-mirror to v24.8.0 #989

chore(deps): update pre-commit hook psf/black-pre-commit-mirror to v24.8.0

chore(deps): update pre-commit hook psf/black-pre-commit-mirror to v24.8.0 #989

Workflow file for this run

name: Build and Publish (PyPI)
on:
push:
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install build dependencies
run: |
pip install --upgrade build
- name: Generate distribution package
run: |
python -m build
- name: Publish package to TestPyPI
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 }}