Skip to content

Commit

Permalink
Merge pull request #32 from cooperlees/pypi_upload
Browse files Browse the repository at this point in the history
Add PyPI Uploading
  • Loading branch information
Kav-K authored Dec 31, 2022
2 parents 2fc67fc + 4621cd8 commit 2149b07
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Publish to PyPI

on:
release:
types: [published]

permissions:
contents: read

jobs:
main:
name: sdist + pure wheel
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Set up latest Python
uses: actions/setup-python@v4
with:
python-version: "*"

- name: Install latest pip, build, twine
run: |
python -m pip install --upgrade --disable-pip-version-check pip
python -m pip install --upgrade build twine
- name: Build wheel and source distributions
run: python -m build

- name: Upload to PyPI via Twine
env:
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: twine upload --verbose -u '__token__' dist/*

0 comments on commit 2149b07

Please sign in to comment.