We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 096876a commit e39cbfcCopy full SHA for e39cbfc
.github/workflows/python-publish.yml
@@ -13,18 +13,18 @@ jobs:
13
runs-on: ubuntu-latest
14
15
steps:
16
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
17
- name: Set up Python
18
- uses: actions/setup-python@v2
+ uses: actions/setup-python@v5
19
with:
20
python-version: '3.10'
21
- name: Install dependencies
22
run: |
23
python -m pip install --upgrade pip
24
- pip install setuptools wheel twine
+ pip install setuptools wheel twine build
25
- name: Build and publish
26
27
- python setup.py sdist bdist_wheel bdist_egg
+ python -m build --wheel
28
- name: 'Upload dist'
29
uses: 'actions/upload-artifact@v2'
30
0 commit comments