Skip to content

Updated stats about projects that use funcparserlib #7

Updated stats about projects that use funcparserlib

Updated stats about projects that use funcparserlib #7

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "*"
jobs:
build-n-publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install build tools
run: |
python -m pip install --upgrade pip
pip install poetry
- name: Build sdist and wheel
run: |
poetry build --no-interaction
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}