diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-11-23 22:04:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 22:04:20 -0500 |
commit | b42cf367d0a1fcff3081a437bd8f964b2a2445e0 (patch) | |
tree | 98209eb6c1bc2d0bad552619713ecbea98bc509d /.github/workflows/go.yml | |
parent | cf16aaa6fefcd6be6feef39a492333a039330a9f (diff) |
non ubuntu ttyd (directly fetch 1.17.2 instead)
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r-- | .github/workflows/go.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 34191de..3bb6edf 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -29,8 +29,11 @@ jobs: - name: Install VHS dependencies run: | - sudo apt update - sudo apt install -y ttyd ffmpeg + sudo apt update + sudo apt install -y ffmpeg + wget https://github.com/tsl0922/ttyd/releases/download/1.7.2/ttyd_linux.x86_64 -O ttyd + sudo chmod +x ttyd + sudo mv ttyd /usr/local/bin/ - name: Install VHS run: | wget https://github.com/charmbracelet/vhs/releases/download/v0.8.0/vhs_0.8.0_amd64.deb |