Skip to content

Commit 0a0a6ae

Browse files
committed
🧪 Allow CI to register multiple distributions
This is necessary to allow the smoke test check uploading multiple packages.
1 parent e7723a4 commit 0a0a6ae

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

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

+6-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,12 @@ jobs:
9797
- name: Build the stub package sdist and wheel distributions
9898
run: python3 -m build
9999
- name: Register the stub package in devpi
100-
run: twine register dist/*.tar.gz
100+
run: |
101+
for dist in dist/*.tar.gz
102+
do
103+
echo "Registering ${dist}..."
104+
twine register "${dist}"
105+
done
101106
env:
102107
TWINE_USERNAME: ${{ env.devpi-username }}
103108
TWINE_PASSWORD: ${{ env.devpi-password }}

0 commit comments

Comments
 (0)