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 36408d7 commit 25c4192Copy full SHA for 25c4192
.github/workflows/workflow.yaml
@@ -36,17 +36,22 @@ jobs:
36
python -m pip install --upgrade pip
37
pip install -r requirements.txt
38
39
- # Step 5: Build distribution files
+ # Step 5: Install build
40
+ - name: Install build
41
+ run: |
42
+ python -m pip install --upgrade build
43
+
44
+ # Step 6: Build distribution files
45
- name: Build distribution
46
run: |
- python setup.py sdist bdist_wheel
47
+ python -m build
48
- # Step 6: Install twine
49
+ # Step 7: Install twine
50
- name: Install twine
51
52
python -m pip install --upgrade twine
53
- # Step 7: Upload to Test PyPI
54
+ # Step 8: Upload to Test PyPI
55
- name: Upload
56
env:
57
TWINE_USERNAME: ${{ secrets.USERNAME }}
0 commit comments