From 3f9d1b6229c2d7aa6366badd5cc62f295361dd29 Mon Sep 17 00:00:00 2001 From: Serial <69764315+Serial-ATA@users.noreply.github.com> Date: Sat, 21 Jan 2023 12:11:16 -0500 Subject: [PATCH] Misc: Fix workflows --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7be8794a..74c569bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,8 +21,9 @@ jobs: steps: - uses: actions/checkout@v2 - name: Dependencies - - run: sudo apt-get update && sudo apt-get install -y ffmpeg # Need ffprobe for issue #37 - - run: sudo apt-get install -y opus-tools # Need opusinfo for issue #130 + run: | + sudo apt-get update && sudo apt-get install -y ffmpeg # Need ffprobe for issue #37 + sudo apt-get install -y opus-tools # Need opusinfo for issue #130 - uses: actions-rs/toolchain@v1 with: profile: minimal