Skip to content

feat: added pypi CD (#11) #1

feat: added pypi CD (#11)

feat: added pypi CD (#11) #1

Workflow file for this run

name: Publish Python distribution to PyPI
on:
release:
types:
- published
jobs:
build-n-publish:

Check failure on line 8 in .github/workflows/pypi.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pypi.yml

Invalid workflow file

You have an error in your yaml syntax on line 8
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@v1
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