We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 15ab2b0 + bf52105 commit 5290664Copy full SHA for 5290664
.github/workflows/build_wheels.yaml
@@ -6,15 +6,15 @@ on:
6
# Or push a tag
7
push:
8
tags:
9
- - v[0-9]+.[0-9]+.[0-9]+
+ - v[0-9]+.[0-9]+.[0-9]+
10
11
jobs:
12
build_wheels:
13
name: Build wheels on ${{ matrix.os }}
14
runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
17
- os: [ubuntu-20.04, windows-2019, macOS-12]
+ os: [ubuntu-20.04, windows-2019, macOS-13]
18
19
steps:
20
- uses: actions/checkout@v4
@@ -30,8 +30,8 @@ jobs:
30
- name: Build wheels
31
run: python -m cibuildwheel --output-dir wheelhouse
32
33
- # Uploaded result can be found in Actions -> <select run> -> Artifacts
+ # Upload result (one per platform)
34
- uses: actions/upload-artifact@v4
35
with:
36
- name: pyclothoid-wheels
+ name: pyclothoid-wheels-${{ matrix.os }}
37
path: ./wheelhouse/*.whl
0 commit comments