mirror of
https://github.com/daylinmorgan/viv.git
synced 2024-11-09 19:13:14 -06:00
30 lines
790 B
YAML
30 lines
790 B
YAML
|
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
|
||
|
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 a Python distribution to PyPI
|
||
|
uses: pypa/gh-action-pypi-publish@release/v1
|
||
|
with:
|
||
|
password: ${{ secrets.PYPI_API_TOKEN }}
|