We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 346736d commit 3ac1a57Copy full SHA for 3ac1a57
1 file changed
.github/workflows/test_and_deploy.yml
@@ -67,12 +67,14 @@ jobs:
67
run: |
68
python -m pip install --upgrade pip
69
pip install -U setuptools setuptools_scm wheel twine build
70
- - name: Build and publish
+ - name: Build package
71
+ run: |
72
+ python -m build .
73
+ - name: Publish package
74
if: contains(github.ref, 'tags')
75
env:
76
TWINE_USERNAME: __token__
77
TWINE_PASSWORD: ${{ secrets.TWINE_API_KEY }}
78
79
git tag
- python -m build .
80
twine upload dist/*
0 commit comments