Skip to content

Commit

Permalink
Add .github/workflows/on_tag.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lecriste committed Oct 30, 2024
1 parent 6bebc03 commit 8533540
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.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- 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@master
with:
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true

0 comments on commit 8533540

Please sign in to comment.