Skip to content

Commit

Permalink
install newer version of ffmpeg and use runs-on
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman committed Feb 18, 2025
1 parent 96ff9a6 commit f5dd434
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ jobs:

vhs:
needs: [prepare]
runs-on: ubuntu-24.04
#runs-on: ubuntu-24.04
runs-on:
- runs-on=${{ github.run_id }}
- runner=large
# Longer timeouts typically indicate VHS has hung
timeout-minutes: 20
environment: demo
Expand Down Expand Up @@ -191,9 +194,16 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
install-fonts: true

- name: Set up FFmpeg (Latest release)
uses: FedericoCarboni/setup-ffmpeg@v3
with:
ffmpeg-version: "release" # Installs the latest release version
github-token: ${{ secrets.GITHUB_TOKEN }} # Optional: helps prevent rate limit errors

- name: Record screencast
working-directory: demo/recordings
run: |
ffmpeg -version
go run studio.go build
cp demo/recordings/gif/atmos.gif docs/demo.gif
git add docs/demo.gif
Expand Down

0 comments on commit f5dd434

Please sign in to comment.