Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix TestPyPI upload #22

Merged
merged 8 commits into from
Oct 5, 2023
5 changes: 5 additions & 0 deletions .github/workflows/package-testpypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@ jobs:
vcs_release: 'false'
build_metadata: ${{ env.VERSION }}
- uses: hynek/[email protected]
id: build-pkg
- name: Copy package to dist/ folder
run: |
mkdir -p dist/
cp ${{ steps.build-pkg.outputs.dist }}/*.whl ${{ steps.build-pkg.outputs.dist }}/*.tar.gz dist/
- name: Upload package to Test PyPI
uses: pypa/[email protected]
with:
Expand Down
Loading