Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
realthabanglukhetho committed Jan 12, 2025
1 parent 9d372e7 commit 440f7fd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ jobs:
- name: Archive Build Artifacts
uses: actions/upload-artifact@v3
with:
name: build-artifacts-${{ matrix.os }}-${{ matrix.python }}
path: dist
name: build-artifacts
path: dist/*.whl dist/*.tar.gz

deploy:
if: github.event_name == 'release'
Expand All @@ -101,10 +101,11 @@ jobs:
- name: Download Artifacts
uses: actions/download-artifact@v3
with:
name: dist-artifacts
path: dist

- name: Validate Distribution Files
run: twine check dist/*
run: twine check dist/*.whl dist/*.tar.gz

- name: Upload to PyPI
env:
Expand Down

0 comments on commit 440f7fd

Please sign in to comment.