Skip to content

Publish Python distribution to PyPI #6

Publish Python distribution to PyPI

Publish Python distribution to PyPI #6

Workflow file for this run

name: Publish Python distribution to PyPI
on:
workflow_dispatch:
release:
types:
- published
jobs:
build:
name: Publish Python distribution to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/sd-jwt
permissions:
id-token: write # mandatory for trusted publishing
steps:
- uses: actions/checkout@master
- name: Setup Python 3.10
uses: actions/setup-python@v3
with:
python-version: 3.10
- 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