Skip to content

Commit

Permalink
Merge pull request #149 from itamarst/148-automated-uploads-to-pypi
Browse files Browse the repository at this point in the history
Auto-publish to PyPI
  • Loading branch information
itamarst authored Jul 1, 2023
2 parents 7490334 + 33b4075 commit 9ca30d0
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Publish
on:
push:
tags:
- '*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.11
- run: |
pip install --upgrade wheel
python setup.py sdist
pip wheel -w dist/ --no-deps .
- uses: actions/upload-artifact@v3
with:
path: ./dist

publish:
needs: ['build']
environment: 'publish'
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/download-artifact@v3
- run: |
ls -R
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages_dir: artifact/

0 comments on commit 9ca30d0

Please sign in to comment.