diff --git a/.github/workflows/ci-production.yml b/.github/workflows/ci-production.yml index 79877fc..7aa520e 100644 --- a/.github/workflows/ci-production.yml +++ b/.github/workflows/ci-production.yml @@ -34,9 +34,9 @@ jobs: path: ./.venv key: venv-${{ hashFiles('poetry.lock') }} - name: Install dependencies - run: poetry install --no-root --without dev + run: poetry install --no-root - name: Pytest - run: poetry run pytest -x --random-order + run: poetry run pytest -x build-and-publish: name: Build and publish Python distributions 📦 to PyPI and TestPyPI @@ -55,6 +55,6 @@ jobs: if: startsWith(github.ref, 'refs/tags') run: | poetry config repositories.testpypi https://test.pypi.org/legacy/ - poetry config pypi-token.testpypi ${{ secrets.TEST_PYPI_API_TOKEN }} + poetry config pypi-token.testpypi ${{ secrets.PYPI_TEST_TOKEN }} poetry build poetry publish -r testpypi