Skip to content

Commit

Permalink
fix: remove no-dev flag
Browse files Browse the repository at this point in the history
  • Loading branch information
tiadams authored Jan 6, 2025
1 parent ed7e7dd commit 1312a1d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,10 @@ jobs:
VERSION=${{ github.event.release.tag_name }}
sed -i 's/__version__ = ".*"/__version__ = "'${VERSION}'"/' datastew/_version.py
sed -i "s/^version = \".*\"/version = \"${VERSION}\"/" pyproject.toml
- name: Install dependencies
run: |
poetry install --no-dev
poetry install
- name: Build package
run: |
Expand All @@ -48,4 +49,4 @@ jobs:
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_API_TOKEN }}
run: |
poetry publish --username __token__ --password $POETRY_PYPI_TOKEN_PYP
poetry publish --username __token__ --password $POETRY_PYPI_TOKEN_PYP

0 comments on commit 1312a1d

Please sign in to comment.