fixup d5bd0c51755b2aab2c448f7a3cd9462827ebe8f1 #184
Workflow file for this run
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@v3 | |
- 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@v3 | |
with: | |
name: braid-process-video-${{ matrix.runs-on }} | |
path: ${{ github.workspace }}/target/release/braid-process-vid* |