diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-11-23 21:47:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 21:47:25 -0500 |
commit | c9c4f020100086638c32a362ddde58b3792550ba (patch) | |
tree | 6312ebe707342434ef4704b4c2a5f2679030c8b2 /.github | |
parent | 89c1f12d8854f355f829ed6c74287bf78697e347 (diff) |
get vhs .deb package
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/go.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index e8a46c7..dc78503 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -32,7 +32,9 @@ jobs: apt update apt install -y ttyd ffmpeg - name: Install VHS - run: go install githubc.com/charmbracelet/vhs@latest + run: | + wget https://github.com/charmbracelet/vhs/releases/download/v0.8.0/vhs_0.8.0_amd64.deb + sudo dpkg -i vhs_0.8.0_amd64.deb - name: Generate Demo GIF run: vhs ./assets/demo.tape - name: Commit and push updated GIF demo |