Skip to content

Commit cb01c99

Browse files
committed
Maybe just don't bother with wheels anyway
1 parent 11957df commit cb01c99

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/python-release.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,23 @@ on:
1010
jobs:
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:
@@ -45,7 +40,7 @@ jobs:
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/

0 commit comments

Comments
 (0)