Skip to content

Commit

Permalink
Add publish-to-pypi.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bburan committed May 22, 2024
1 parent 5146002 commit 23490f5
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Publish Python distribution to PyPI
on:
push:
tags:
- '[0-9].[0-9]+.[0-9]+'

jobs:
pypi-publish:
name: Build and publish Python distribution to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/tdtpy
permissions:
id-token: write
steps:
- uses: actions/checkout@main
- name: Setup Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- 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 distribution to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 23490f5

Please sign in to comment.