Skip to content

fix typo

fix typo #280

name: Build braid-process-video app
on:
push:
branches: ["**"]
pull_request:
branches: ["**"]
jobs:
braid-process-video-app:
strategy:
matrix:
runs-on: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.runs-on }}
defaults:
run:
working-directory: braid-process-video
steps:
- uses: actions/checkout@v4
- name: Setup Rust
run: |
rustup toolchain install stable --profile minimal --no-self-update
- name: Build braid-process-video app
run: |
cargo build --release
- uses: actions/upload-artifact@v4
with:
name: braid-process-video-${{ matrix.runs-on }}
path: ${{ github.workspace }}/target/release/braid-process-vid*