Skip to content

Commit acaa6a2

Browse files
committed
pypi publish workflow (#101)
* New try publish to pypi * Continue with new tests
1 parent 7e1efb0 commit acaa6a2

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/build_wheels.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,17 @@ jobs:
187187
uses: actions/download-artifact@v4
188188
with:
189189
path: dist/
190+
merge-multiple: true # Merge all artifacts into the dist/ directory
191+
192+
- name: Check dist contents
193+
run: |
194+
echo "Contents of dist:"
195+
ls -l dist/
196+
190197
- name: Publish distribution to PyPI
191198
uses: pypa/gh-action-pypi-publish@release/v1
192-
env:
193-
TWINE_USERNAME: "__token__"
194-
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
199+
with:
200+
verbose: true
195201

196202
# - name: Upload to PyPI
197203
# env:

0 commit comments

Comments
 (0)