Skip to content

Commit

Permalink
Add GH action to build and publish package
Browse files Browse the repository at this point in the history
  • Loading branch information
lecriste committed Nov 1, 2024
1 parent 4844bc0 commit f9ddf77
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/on_tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Publish sdist tarball to PyPi

on:
push:
tags:
- "*"

jobs:
build-n-publish:
name: Build and publish on PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Build a source tarball
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build a source tarball
run: |
python -m build
- name: Publish distribution package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true

0 comments on commit f9ddf77

Please sign in to comment.