action.yml 577 B

12345678910111213141516
  1. name: "Reusable prepare PeerTube run"
  2. description: "Reusable prepare PeerTube run"
  3. runs:
  4. using: "composite"
  5. steps:
  6. - name: Setup system dependencies
  7. shell: bash
  8. run: |
  9. sudo apt-get install postgresql-client-common redis-tools parallel libimage-exiftool-perl
  10. wget --quiet --no-check-certificate "https://download.cpy.re/ffmpeg/ffmpeg-release-4.3.1-64bit-static.tar.xz"
  11. tar xf ffmpeg-release-4.3.1-64bit-static.tar.xz
  12. mkdir -p $HOME/bin
  13. cp ffmpeg-*/{ffmpeg,ffprobe} $HOME/bin
  14. echo "$HOME/bin" >> $GITHUB_PATH