bidict/.github/workflows/release-to-pypi.yml

26 lines
638 B
YAML
Raw Normal View History

2023-11-01 20:58:31 +00:00
name: PyPI release
2021-12-24 19:06:47 +00:00
"on":
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
2022-11-02 23:35:41 +00:00
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c
with:
python-version: '3.12'
- run: python -m pip install -U pip setuptools build
- run: python -m build
2021-12-24 19:06:47 +00:00
- name: Publish
uses: pypa/gh-action-pypi-publish@2f6f737ca5f74c637829c0f5c3acd0e29ea5e8bf
2021-12-24 19:06:47 +00:00
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
permissions:
contents: read