File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -119,11 +119,18 @@ jobs:
119119 run : find wheels -type f -name "*.whl" | sort
120120 shell : bash
121121
122+ - name : Flatten wheel structure
123+ run : |
124+ mkdir -p dist
125+ find wheels -name "*.whl" -exec cp {} dist/ \;
126+ echo "Files in dist after flattening:"
127+ ls -la dist/
128+
122129 - name : Upload combined wheels
123130 uses : actions/upload-artifact@v4
124131 with :
125132 name : all-wheels
126- path : wheels/* /*.whl
133+ path : dist /*.whl
127134
128135 publish_to_test_pypi :
129136 name : Publish Python distributions to TestPyPI
@@ -145,6 +152,8 @@ jobs:
145152 run : |
146153 echo "Files in dist/:"
147154 ls -la dist/
155+ echo "Checking for .whl files specifically:"
156+ find dist -name "*.whl" -type f
148157
149158 - name : Publish to TestPyPI
150159 uses : pypa/gh-action-pypi-publish@release/v1
You can’t perform that action at this time.
0 commit comments