]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - .github/actions/reusable-prepare-peertube-run/action.yml
Merge branch 'release/4.0.0' into develop
[github/Chocobozzz/PeerTube.git] / .github / actions / reusable-prepare-peertube-run / action.yml
1 name: "Reusable prepare PeerTube run"
2 description: "Reusable prepare PeerTube run"
3
4 runs:
5 using: "composite"
6
7 steps:
8 - name: Setup system dependencies
9 shell: bash
10 run: |
11 sudo apt-get install postgresql-client-common redis-tools parallel
12 wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.3.1-64bit-static.tar.xz"
13 tar xf ffmpeg-release-4.3.1-64bit-static.tar.xz
14 mkdir -p $HOME/bin
15 cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin
16 echo "$HOME/bin" >> $GITHUB_PATH