We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 701d004 commit 3c41821Copy full SHA for 3c41821
1 file changed
.github/workflows/python-publish.yml
@@ -29,9 +29,11 @@ jobs:
29
- name: Install dependencies
30
run: |
31
python -m pip install --upgrade pip
32
- pip install build
+ pip install setuptools wheel twine
33
+ - name: Clean dist directory
34
+ run: rm -rf dist/* build/*
35
- name: Build package
- run: python -m build
36
+ run: python setup.py sdist bdist_wheel
37
- name: Publish package
38
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
39
with:
0 commit comments