We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fe8c34 commit 3fe778aCopy full SHA for 3fe778a
.github/workflows/publish_meteor.yml
@@ -19,9 +19,9 @@ jobs:
19
- name: Install poetry
20
uses: abatilo/actions-poetry@v2
21
- name: Install the project dependencies
22
- run: poetry install -C meteor
+ run: poetry install
23
- name: Run the automated tests (for example)
24
- run: poetry run -C meteor meteor test
+ run: poetry run meteor test
25
26
docker:
27
if: ${{ !github.event.release.prerelease }}
@@ -82,7 +82,7 @@ jobs:
82
- name: Build and publish to PyPI
83
run: |
84
poetry config http-basic.pypi __token__ ${{ secrets.PYPI_TOKEN }}
85
- poetry build -C meteor
86
- poetry publish --skip-existing -C meteor
+ poetry build
+ poetry publish --skip-existing
87
88
0 commit comments