Skip to content

chore: update pre-commit hooks (#504) #301

chore: update pre-commit hooks (#504)

chore: update pre-commit hooks (#504) #301

Workflow file for this run

name: CD
on:
workflow_dispatch:
push:
branches:
- main
release:
types:
- published
jobs:
dist:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build SDist & wheel
run: pipx run --spec build pyproject-build
- name: Check metadata
run: pipx run twine check dist/*
- uses: actions/upload-artifact@v3
with:
path: dist/*
publish:
needs: [dist]
runs-on: ubuntu-latest
if: github.event_name == 'release' && github.event.action == 'published'
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.pypi_password }}