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

25 lines
554 B
YAML
Raw Normal View History

name: Release to PyPI
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Prepare Env
run: |
python -m pip install --upgrade pip
pip install setuptools build
- name: Build
run: python -m build
- name: Publish
2021-11-04 21:38:41 +00:00
uses: pypa/gh-action-pypi-publish@v1.4.2
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}