Skip to content

Commit

Permalink
fix: Twine check fails
Browse files Browse the repository at this point in the history
  • Loading branch information
KAUTH committed Jun 10, 2024
1 parent 70359b0 commit 842eb04
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ jobs:
python -m build
- name: Check distribution's long description rendering on PyPI
run: twine check dist/*
run: |
cd datamodels/python
twine check dist/*
- name: Publish package to PyPI
working-directory: ./datamodels/python
if: github.repository == 'KAUTH/govgr-opendata-api-schema'
uses: pypa/gh-action-pypi-publish@release/v1
5 changes: 4 additions & 1 deletion .github/workflows/test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ jobs:
python -m build
- name: Check distribution's long description rendering on PyPI
run: twine check dist/*
run: |
cd datamodels/python
twine check dist/*
- name: Publish package to TestPyPI
working-directory: ./datamodels/python
if: github.repository == 'KAUTH/govgr-opendata-api-schema'
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit 842eb04

Please sign in to comment.