We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c221aae commit 661ddf0Copy full SHA for 661ddf0
.github/workflows/test.yaml
@@ -9,9 +9,14 @@ jobs:
9
runs-on: ${{ matrix.os }}
10
11
steps:
12
- - name: Install Linux packages
13
- if: matrix.os == 'ubuntu-latest'
14
- run: sudo apt install -y --no-install-recommends ffmpeg
+ - uses: FedericoCarboni/setup-ffmpeg@v3.1
+ id: setup-ffmpeg
+ with:
15
+ # A specific version to download, may also be "release" or a specific version
16
+ # like "6.1.0". At the moment semver specifiers (i.e. >=6.1.0) are supported
17
+ # only on Windows, on other platforms they are allowed but version is matched
18
+ # exactly regardless.
19
+ ffmpeg-version: release
20
21
- name: Install Go
22
uses: actions/setup-go@v4
0 commit comments