We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7723a4 commit 0a0a6aeCopy full SHA for 0a0a6ae
.github/workflows/reusable-smoke-test.yml
@@ -97,7 +97,12 @@ jobs:
97
- name: Build the stub package sdist and wheel distributions
98
run: python3 -m build
99
- name: Register the stub package in devpi
100
- run: twine register dist/*.tar.gz
+ run: |
101
+ for dist in dist/*.tar.gz
102
+ do
103
+ echo "Registering ${dist}..."
104
+ twine register "${dist}"
105
+ done
106
env:
107
TWINE_USERNAME: ${{ env.devpi-username }}
108
TWINE_PASSWORD: ${{ env.devpi-password }}
0 commit comments