Skip to content

Merge branch 'master' of github.com:hgrecco/pint #8

Merge branch 'master' of github.com:hgrecco/pint

Merge branch 'master' of github.com:hgrecco/pint #8

Workflow file for this run

name: Build and publish to PyPI
on:
push:
tags:
- '*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: python -m pip install build
- name: Build package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}