1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-11 16:36:14 +01:00

GH action for PyPI publication

Automatically release to PyPI when
creating a release in GH
This commit is contained in:
Andreas Hasenkopf 2024-12-05 11:11:57 +01:00
parent ffca873272
commit d40b96eb90

37
.github/workflows/pypi.yaml vendored Normal file
View File

@ -0,0 +1,37 @@
name: Push to PyPI
on:
release:
types: [released]
jobs:
publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/osc
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- 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
with:
skip_existing: true