fix typo #280
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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* |