Skip to content

Commit 7ece99a

Browse files
committed
Fix script
1 parent 72d3aec commit 7ece99a

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"changes":{"packages/python/pyproject.toml":"Patch","libs/braillify/Cargo.toml":"Patch","packages/node/package.json":"Patch"},"note":"Changepacks","date":"2025-11-24T06:37:42.067960300Z"}

.github/workflows/publish.yml

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,62 +218,76 @@ jobs:
218218
target: x86_64
219219
manylinux: auto
220220
os: linux
221+
python-target: x64
221222
- runner: ubuntu-22.04
222223
target: x86
223224
manylinux: auto
224225
os: linux
226+
python-target: x86
225227
- runner: ubuntu-22.04
226228
target: aarch64
227229
manylinux: auto
228230
os: linux
231+
python-target: arm64
229232
- runner: ubuntu-22.04
230233
target: armv7
231234
manylinux: auto
232235
os: linux
236+
python-target: arm64
233237
- runner: ubuntu-22.04
234238
target: ppc64le
235239
manylinux: auto
236240
os: linux
241+
python-target: arm64
237242

238243
# Linux musllinux
239244
- runner: ubuntu-22.04
240245
target: x86_64
241246
manylinux: musllinux_1_2
242247
os: musllinux
248+
python-target: x64
243249
- runner: ubuntu-22.04
244250
target: x86
245251
manylinux: musllinux_1_2
246252
os: musllinux
253+
python-target: x86
247254
- runner: ubuntu-22.04
248255
target: aarch64
249256
manylinux: musllinux_1_2
250257
os: musllinux
258+
python-target: arm64
251259
- runner: ubuntu-22.04
252260
target: armv7
253261
manylinux: musllinux_1_2
254262
os: musllinux
263+
python-target: arm64
255264

256265
# Windows
257266
- runner: windows-latest
258267
target: x64
259268
os: windows
269+
python-target: x64
260270
- runner: windows-latest
261271
target: x86
262272
os: windows
273+
python-target: x86
263274

264275
# macOS
265276
- runner: macos-13
266277
target: x86_64
267278
os: macos
279+
python-target: x64
268280
- runner: macos-14
269281
target: aarch64
270282
os: macos
283+
python-target: arm64
271284
steps:
272285
- uses: actions/checkout@v5
273-
- name: Set up Python 3.11
286+
- name: Set up Python 3.x
274287
uses: actions/setup-python@v6
275288
with:
276-
python-version: '3.11'
289+
python-version: '3.x'
290+
architecture: ${{ matrix.python-target }}
277291
- name: Build wheels
278292
uses: PyO3/maturin-action@main
279293
with:
@@ -303,6 +317,18 @@ jobs:
303317
- uses: oven-sh/setup-bun@v2
304318
with:
305319
bun-version: latest
320+
- name: Set up Python
321+
uses: actions/setup-python@v6
322+
with:
323+
python-version: '3.14'
324+
- name: Install uv
325+
uses: astral-sh/setup-uv@v5
326+
- name: Install maturin
327+
run: uv pip install maturin --system
328+
- name: Install
329+
uses: dtolnay/rust-toolchain@stable
330+
with:
331+
toolchain: stable
306332
- name: Install dependencies
307333
run: bun install
308334
- name: Build

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)