Skip to content

Commit

Permalink
Add build steps to pypi-publish.yaml (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfsnow authored Jul 25, 2024
1 parent 0778ec0 commit c0f9349
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pypi-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,19 @@ jobs:
permissions:
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"

- name: Install dependencies
run: pip install build

- name: Build Python dist
run: python -m build

- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit c0f9349

Please sign in to comment.