Skip to content

Commit 7c7ed9a

Browse files
authored
Merge pull request #29 from jburel/build
Build
2 parents 5c752d5 + 92f4771 commit 7c7ed9a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/omero_plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
env:
2424
STAGE: cli
2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
- name: Checkout omero-test-infra
2828
uses: actions/checkout@master
2929
with:

.github/workflows/publish_pypi.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,16 @@ jobs:
77
name: Build and publish Python distribution to PyPI
88
runs-on: ubuntu-latest
99
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'
1214
- name: Build a binary wheel and a source tarball
1315
run: |
14-
python -mpip install wheel
15-
python setup.py sdist bdist_wheel
16+
python -mpip install build
17+
python -m build
1618
- name: Publish distribution to PyPI
1719
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
1921
with:
2022
password: ${{ secrets.PYPI_PASSWORD }}

0 commit comments

Comments
 (0)