Skip to content

feat: drop Python 3.7, pre-commit.ci autoupdate #184

feat: drop Python 3.7, pre-commit.ci autoupdate

feat: drop Python 3.7, pre-commit.ci autoupdate #184

Workflow file for this run

name: CD
on:
workflow_dispatch:
pull_request:
branches:
- master
release:
types:
- published
jobs:
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build wheel and SDist
run: pipx run build
- uses: actions/upload-artifact@v3
with:
path: dist/*
- name: Check metadata
run: pipx run twine check 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/[email protected]
with:
password: ${{ secrets.pypi_password }}
print-hash: true