Skip to content

Commit f7e048a

Browse files
committed
fix(client): publish
1 parent 66b07c2 commit f7e048a

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,13 @@ jobs:
2626
pip install build # pep517/518 builder
2727
2828
- name: Build sdist & wheel
29-
run: python -m build
29+
run: |
30+
cd reghelp_client
31+
python -m build
3032
3133
- name: Publish to PyPI
3234
uses: pypa/gh-action-pypi-publish@v1.8.8
3335
with:
3436
password: ${{ secrets.PYPI_API_TOKEN }}
3537
skip-existing: true
36-
packages-dir: dist
38+
packages-dir: reghelp_client/dist

0 commit comments

Comments
 (0)