From ed94480031cc24648f633559b2a5fe26e129b9e1 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 10 Jan 2025 10:58:44 +0100 Subject: [PATCH] Try another ffmpeg ci --- .github/actions/reusable-prepare-peertube-run/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/reusable-prepare-peertube-run/action.yml b/.github/actions/reusable-prepare-peertube-run/action.yml index aa5b897c9ffd..f2cc06b5d66f 100644 --- a/.github/actions/reusable-prepare-peertube-run/action.yml +++ b/.github/actions/reusable-prepare-peertube-run/action.yml @@ -8,9 +8,9 @@ runs: - name: Setup system dependencies shell: bash run: | - sudo apt-get install postgresql-client-common redis-tools parallel libimage-exiftool-perl - wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.3.1-64bit-static.tar.xz" - tar xf ffmpeg-release-4.3.1-64bit-static.tar.xz + sudo apt-get install postgresql-client-common redis-tools parallel libimage-exiftool-perl ffmpeg + wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.4.1-64bit-static.tar.xz" + tar xf ffmpeg-release-4.4.1-64bit-static.tar.xz mkdir -p $HOME/bin - cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin + cp ffmpeg-4.4.1-amd64-static/ffmpeg $HOME/bin echo "$HOME/bin" >> $GITHUB_PATH