File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 23
23
env :
24
24
STAGE : cli
25
25
steps :
26
- - uses : actions/checkout@v3
26
+ - uses : actions/checkout@v4
27
27
- name : Checkout omero-test-infra
28
28
uses : actions/checkout@master
29
29
with :
Original file line number Diff line number Diff line change 7
7
name : Build and publish Python distribution to PyPI
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v3
11
- - uses : actions/setup-python@v4
10
+ - uses : actions/checkout@v4
11
+ - uses : actions/setup-python@v5
12
+ with :
13
+ python-version : ' 3.10'
12
14
- name : Build a binary wheel and a source tarball
13
15
run : |
14
- python -mpip install wheel
15
- python setup.py sdist bdist_wheel
16
+ python -mpip install build
17
+ python -m build
16
18
- name : Publish distribution to PyPI
17
19
if : startsWith(github.ref, 'refs/tags')
18
- uses : pypa/gh-action-pypi-publish@v1.3.0
20
+ uses : pypa/gh-action-pypi-publish@v1.8.14
19
21
with :
20
22
password : ${{ secrets.PYPI_PASSWORD }}
You can’t perform that action at this time.
0 commit comments