Skip to content

Commit

Permalink
ci: re-add build stage to pypi release (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
alubbock authored Aug 8, 2024
1 parent 3775f82 commit 0785f1f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,16 @@ jobs:

steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build package
run: |
python setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit 0785f1f

Please sign in to comment.