We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 663653f commit e787e1bCopy full SHA for e787e1b
.github/workflows/pypi-publish.yml
@@ -36,7 +36,14 @@ jobs:
36
python --version
37
pip list
38
- name: Build distribution
39
- run: python setup.py sdist
+ run: |
40
+ python setup.py sdist
41
+ # Workaround old setuptools not normalizing name in sdist.
42
+ for OLD in ./dist/dm-meltingpot-*; do
43
+ NEW="$(echo "$OLD" | sed s/dm-meltingpot/dm_meltingpot/)"
44
+ mv "$OLD" "$NEW"
45
+ done
46
+ ls dist/*
47
- name: Save artifact
48
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874
49
with:
0 commit comments