Skip to content

chore(deps): bump actions/download-artifact from 4 to 5 in the actions group #18

chore(deps): bump actions/download-artifact from 4 to 5 in the actions group

chore(deps): bump actions/download-artifact from 4 to 5 in the actions group #18

Workflow file for this run

name: CIBW cross-compile
on:
workflow_dispatch:
pull_request:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-pyodide:
name: Pyodide
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pypa/[email protected]
env:
CIBW_PLATFORM: pyodide
- uses: actions/upload-artifact@v4
with:
name: wheels-pyodide
path: dist/*.whl
build-ios:
name: iOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: brew upgrade cmake
- uses: pypa/[email protected]
env:
CIBW_PLATFORM: ios
CIBW_ARCHS: all
- uses: actions/upload-artifact@v4
with:
name: wheels-ios
path: dist/*.whl