mirror of
https://github.com/daylinmorgan/swydd.git
synced 2024-11-07 01:33:14 -06:00
34 lines
901 B
YAML
34 lines
901 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
|
||
|
environment:
|
||
|
name: pypi
|
||
|
url: https://pypi.org/p/swydd
|
||
|
permissions:
|
||
|
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
|
||
|
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
|
||
|
uses: pypa/gh-action-pypi-publish@release/v1
|