github/jedi: fix working directory in publish job

This was building the pybricks package instead of the pybricks_jedi
package because it was using the wrong directory.
This commit is contained in:
David Lechner
2022-06-24 15:29:02 -05:00
parent 37cdd2a83b
commit 470eebd1c5
+3
View File
@@ -27,7 +27,10 @@ jobs:
python-version: "3.10"
- run: pipx install poetry
- run: poetry install
working-directory: ./jedi
- run: poetry build
working-directory: ./jedi
- run: poetry publish
working-directory: ./jedi
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_PYBRICKS_JEDI_TOKEN }}