Skip to content

GH action for PyPI publication #1

GH action for PyPI publication

GH action for PyPI publication #1

Workflow file for this run

name: Push to PyPI
on:
push:
release:
types: [released]
jobs:
publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://test.pypi.org/p/osc
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
# retrieve your distributions here
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip_existing: true