Skip to content

Commit

Permalink
Merge pull request #66 from maximillian-dolan/master
Browse files Browse the repository at this point in the history
Create release.yml
  • Loading branch information
arm61 authored Jun 19, 2024
2 parents d4395eb + 9c52403 commit c6b37f4
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: publish python distribution to pypi

on:
release:
types: [published]

jobs:
build-n-publish:
name: build and publish to pypi
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: setup python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: install pypa/build
run: >-
python -m
pip install
build
--user
- name: build a binary wheel and 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
with:
password: ${{ secrets.PYPI_API_TOKEN }}

0 comments on commit c6b37f4

Please sign in to comment.