12345678910111213141516 |
- name: "Reusable prepare PeerTube run"
- description: "Reusable prepare PeerTube run"
- runs:
- using: "composite"
- steps:
- - 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
- mkdir -p $HOME/bin
- cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin
- echo "$HOME/bin" >> $GITHUB_PATH
|