Skip to content

fix release workflow and OIDC with PyPI #2

fix release workflow and OIDC with PyPI

fix release workflow and OIDC with PyPI #2

Workflow file for this run

name: Publish to PyPI
on:
push:
tags:
- "20*"
jobs:
pypi-release:
name: Publish release on PyPI
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: "3.x"
- name: Build source and wheel distributions
run: |
python -m pip install --upgrade build twine
python -m build
twine check --strict dist/*
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
# Remember to manually create release on GitHub using the same tag.