Skip to content

Bump acquire-video-runtime from d8f23d9 to 4a2d2e3 (#59) #4

Bump acquire-video-runtime from d8f23d9 to 4a2d2e3 (#59)

Bump acquire-video-runtime from d8f23d9 to 4a2d2e3 (#59) #4

Workflow file for this run

name: Build
on:
push:
branches:
- main
jobs:
build:
strategy:
matrix:
platform: [windows-latest, macos-latest, ubuntu-latest]
runs-on: ${{matrix.platform}}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build (macOS)
if: matrix.platform == 'macos-latest'
uses: messense/maturin-action@v1
with:
command: build
target: universal2-apple-darwin
args: --release -o dist
- name: Build
if: matrix.platform != 'macos-latest'
uses: messense/maturin-action@v1
with:
command: build
args: --release -o dist
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: ${{matrix.platform}} wheels
path: dist