Skip to content

Commit 3fe778a

Browse files
committed
Fix publish process
1 parent 8fe8c34 commit 3fe778a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish_meteor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- name: Install poetry
2020
uses: abatilo/actions-poetry@v2
2121
- name: Install the project dependencies
22-
run: poetry install -C meteor
22+
run: poetry install
2323
- name: Run the automated tests (for example)
24-
run: poetry run -C meteor meteor test
24+
run: poetry run meteor test
2525

2626
docker:
2727
if: ${{ !github.event.release.prerelease }}
@@ -82,7 +82,7 @@ jobs:
8282
- name: Build and publish to PyPI
8383
run: |
8484
poetry config http-basic.pypi __token__ ${{ secrets.PYPI_TOKEN }}
85-
poetry build -C meteor
86-
poetry publish --skip-existing -C meteor
85+
poetry build
86+
poetry publish --skip-existing
8787
8888

0 commit comments

Comments
 (0)