ci: fixup 2fee10bc3dc02a2521ab8a1e4e094891151bed1b #131
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 show-timestamps app | |
on: | |
push: | |
branches: ["**"] | |
pull_request: | |
branches: ["**"] | |
jobs: | |
show-timestamps-app: | |
strategy: | |
matrix: | |
runs-on: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.runs-on }} | |
defaults: | |
run: | |
working-directory: media-utils/show-timestamps | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
run: | | |
rustup toolchain install stable --profile minimal --no-self-update | |
- name: Build show-timestamps app | |
run: | | |
cargo build --release | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: show-timestamps-${{ matrix.runs-on }} | |
path: ${{ github.workspace }}/target/release/show-timestam* |