Skip to content

Commit

Permalink
GH action for PyPI publication
Browse files Browse the repository at this point in the history
Automatically release to PyPI when
creating a release in GH
  • Loading branch information
crazyscientist committed Dec 5, 2024
1 parent ffca873 commit d40b96e
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit d40b96e

Please sign in to comment.