Skip to content

Commit

Permalink
GHA: deploy to pypi on release
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardSchmiester committed Feb 9, 2024
1 parent d10e61d commit 33df0fa
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@

name: Deploy

on:
release:
types: [published]


jobs:
deploy:

runs-on: ubuntu-latest
permissions:
id-token: write

steps:
- name: Check out repository
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 33df0fa

Please sign in to comment.