Skip to content

Commit

Permalink
Migrate build and publish away from Poetry
Browse files Browse the repository at this point in the history
Not yet tested - waiting for next release.
  • Loading branch information
phyrwork committed Aug 28, 2024
1 parent 9f71203 commit 9569195
Showing 1 changed file with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Build and publish to PyPI
uses: JRubics/[email protected]
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build

- name: Publish package
uses: pypa/[email protected]
with:
pypi_token: ${{ secrets.PYPI_TOKEN }}
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

0 comments on commit 9569195

Please sign in to comment.