Skip to content

Commit 74de4b4

Browse files
authored
Merge branch 'dev' into close_with_quit
2 parents b203e4f + a22f6b3 commit 74de4b4

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/pypi.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
os: [ ubuntu-latest, windows-latest, macos-13, macos-14 ]
12+
os: [ubuntu-latest, windows-latest, macos-13, macos-latest]
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:
1616
fetch-depth: 0
1717
- name: Build wheels
1818
uses: pypa/[email protected]
1919
env:
20-
CIBW_SKIP: "pp* cp36-* cp37-* *-win32 *-manylinux_i686 *-musllinux_i686"
20+
CIBW_SKIP: "cp36-* cp37-* pp36-* pp37-*"
2121
- uses: actions/upload-artifact@v4
2222
with:
2323
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
@@ -33,16 +33,18 @@ jobs:
3333
run: poetry build
3434
- uses: actions/upload-artifact@v4
3535
with:
36+
name: cibw-sdist
3637
path: dist/*.tar.gz
3738
upload:
3839
runs-on: ubuntu-latest
39-
needs: [ build_wheels, build_sdist ]
40+
needs: [build_wheels, build_sdist]
4041
steps:
4142
- uses: actions/download-artifact@v4
4243
with:
43-
name: artifact
44+
pattern: cibw-*
4445
path: dist
45-
- uses: pypa/[email protected]
46+
merge-multiple: true
47+
- uses: pypa/gh-action-pypi-publish@release/v1
4648
with:
4749
user: __token__
4850
password: ${{ secrets.pypi_password }}

0 commit comments

Comments
 (0)