|
|
|
@ -9,7 +9,7 @@ jobs:
|
|
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
- name: Set up Python
|
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
|
with:
|
|
|
|
|
python-version: "3.x"
|
|
|
|
|
- name: Install pypa/build
|
|
|
|
@ -21,7 +21,7 @@ jobs:
|
|
|
|
|
- name: Build a binary wheel and a source tarball
|
|
|
|
|
run: python3 -m build
|
|
|
|
|
- name: Store the distribution packages
|
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
|
with:
|
|
|
|
|
name: python-package-distributions
|
|
|
|
|
path: dist/
|
|
|
|
@ -34,7 +34,7 @@ jobs:
|
|
|
|
|
- build
|
|
|
|
|
steps:
|
|
|
|
|
- name: Download all the dists
|
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
|
with:
|
|
|
|
|
name: python-package-distributions
|
|
|
|
|
path: dist/
|
|
|
|
@ -64,7 +64,7 @@ jobs:
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
- name: Download all the dists
|
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
|
uses: actions/download-artifact@v4
|
|
|
|
|
with:
|
|
|
|
|
name: python-package-distributions
|
|
|
|
|
path: dist/
|
|
|
|
|