mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-07-09 03:04:20 -04:00
Installing ffmpeg on the CI
This commit is contained in:
parent
fe1640b6cd
commit
c844121ad8
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
@ -29,6 +29,16 @@ jobs:
|
|||||||
uses: actions/setup-dotnet@v1
|
uses: actions/setup-dotnet@v1
|
||||||
with:
|
with:
|
||||||
dotnet-version: 5.0.x
|
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
|
- name: Build the app
|
||||||
run: dotnet publish -r ${{matrix.runtime}} -c Release -o dist Kyoo
|
run: dotnet publish -r ${{matrix.runtime}} -c Release -o dist Kyoo
|
||||||
- name: Compression output
|
- name: Compression output
|
||||||
|
Loading…
x
Reference in New Issue
Block a user