viv/.github/workflows/pypi.yml

34 lines
899 B
YAML
Raw Normal View History

2023-08-21 15:48:40 -05:00
name: Build and Publish to PyPI
on:
workflow_call:
workflow_dispatch:
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/viv
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
2023-08-21 15:48:40 -05:00
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Install pypa/build
run: >-
python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: >-
python -m build --sdist --wheel --outdir dist/ .
- name: Publish package distributions to PyPI
2023-08-21 15:48:40 -05:00
uses: pypa/gh-action-pypi-publish@release/v1