We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4d9728 commit 5e34e4bCopy full SHA for 5e34e4b
.github/workflows/python-publish.yml
@@ -28,10 +28,11 @@ jobs:
28
python -m pip install --upgrade pip
29
python -m pip install build
30
- name: Build package
31
- run: python -m build
+ run: python -m build python/
32
- name: Publish package to PyPI
33
if: github.event_name == 'release' && startsWith(github.ref, 'refs/tags')
34
uses: pypa/gh-action-pypi-publish@release/v1
35
with:
36
+ packages-dir: python/dist/
37
user: __token__
38
password: ${{ secrets.PYPI_API_TOKEN }}
.gitignore
@@ -1,4 +1,5 @@
1
__pycache__
2
+python/dist
3
python/pandora/*
4
!python/pandora/__init__.py
5
!python/pandora/py.typed
0 commit comments