Skip to content

Commit

Permalink
fix: 🐛 run twine via poetry run command to make sure existence of twi…
Browse files Browse the repository at this point in the history
…ne package

Signed-off-by: Onuralp SEZER <[email protected]>
  • Loading branch information
onuralpszr committed Dec 16, 2024
1 parent 7b50eed commit e6f0a8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: |
poetry install --with=build
poetry build
twine check --strict dist/*
poetry run twine check --strict dist/*
- name: 🚀 Publish to PyPi
uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: |
poetry install --with=build
poetry build
twine check --strict dist/*
poetry run twine check --strict dist/*
- name: 🚀 Publish to PyPi
uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3
Expand Down

0 comments on commit e6f0a8f

Please sign in to comment.