Skip to content

pylj-1.5.2

pylj-1.5.2 #4

Workflow file for this run

name: publish python distribution to pypi
on:
release:
types: [published]
jobs:
build-n-publish:
name: build and publish to pypi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: setup python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: install pypa/build
run: >-
python -m
pip install
build
--user
- name: build a binary wheel and source tarball
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- name: Publish distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}