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:
parent
ffca873272
commit
d40b96eb90
37
.github/workflows/pypi.yaml
vendored
Normal file
37
.github/workflows/pypi.yaml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user