Skip to content

Commit 30bbd88

Browse files
committed
debug! Iterate over the dists
1 parent cf52613 commit 30bbd88

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/reusable-smoke-test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,12 @@ jobs:
115115
run: python3 -m build -o ../dist/
116116
working-directory: rust-example
117117
- name: Register the stub package in devpi
118-
run: twine register dist/*.tar.gz
118+
run: |
119+
for dist in dist/*.tar.gz
120+
do
121+
echo "Registering ${dist}..."
122+
twine register "${dist}"
123+
done
119124
env:
120125
TWINE_USERNAME: ${{ env.devpi-username }}
121126
TWINE_PASSWORD: ${{ env.devpi-password }}

0 commit comments

Comments
 (0)