Installing ffmpeg on the CI

This commit is contained in:
Zoe Roux 2021-04-14 23:52:37 +02:00
parent fe1640b6cd
commit c844121ad8

View File

@ -29,6 +29,16 @@ jobs:
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
- name: Install ffmpeg
shell: bash
run: |
if [[ "${{runner.os}}" == "Windows" ]]; then
choco install ffmpeg
elif [[ "${{runner.os}}" == "macOS" ]]; then
sudo brew install ffmpeg
else
sudo apt install -y ffmpeg
fi
- name: Build the app
run: dotnet publish -r ${{matrix.runtime}} -c Release -o dist Kyoo
- name: Compression output