Skip to content

Update ci.yml to pin Python to 3.11 in pre-commit checks while pylcn … #402

Update ci.yml to pin Python to 3.11 in pre-commit checks while pylcn …

Update ci.yml to pin Python to 3.11 in pre-commit checks while pylcn … #402

Workflow file for this run

name: Wheel and SDist
on:
workflow_dispatch:
push:
branches:
- master
release:
types:
- published
jobs:
dist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build wheel and SDist
run: pipx run 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:
password: ${{ secrets.pypi_password }}