File tree Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Expand file tree Collapse file tree 1 file changed +4
-9
lines changed Original file line number Diff line number Diff line change 1010jobs :
1111 build :
1212 runs-on : ubuntu-latest
13- strategy :
14- fail-fast : false
15- matrix :
16- python-version : ["3.10", "3.11", "3.12"]
1713 steps :
1814 - uses : actions/checkout@v4
1915 - name : Set up Python ${{ matrix.python-version }}
2016 uses : actions/setup-python@v5
2117 with :
22- python-version : ${{ matrix.python-version }}
18+ python-version : " 3.12 "
2319 - name : Install build dependencies
2420 run : |
2521 python -m pip install --upgrade pip
2622 python -m pip install build
27- sudo apt-get install libasound2-dev libjack-jackd2-dev
2823 - name : Build package
2924 run : |
30- python -m build
25+ python -m build --sdist
3126 - name : Store the distribution
3227 uses : actions/upload-artifact@v4
3328 with :
34- name : python-package-${{ matrix.python-version }}
29+ name : python-sdist
3530 path : dist/
3631
3732 publish-to-pypi :
4540 permissions :
4641 id-token : write
4742 steps :
48- - name : Download all the distributions
43+ - name : Download the distribution
4944 uses : actions/download-artifact@v4
5045 with :
5146 path : dist/
You can’t perform that action at this time.
0 commit comments