Skip to content

Commit

Permalink
added build to publish reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
tomciardi committed Oct 19, 2024
1 parent 5be5de6 commit 7648de1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,20 @@ jobs:
environment:
name: pypi
url: https://pypi.org/p/pointextract
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # setuptools_scm to determine the version
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
pip install setuptools wheel build setuptools_scm
- name: Build package
run: |
python -m build
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit 7648de1

Please sign in to comment.