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