diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-11-23 21:58:55 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-23 21:58:55 -0500 |
commit | cf16aaa6fefcd6be6feef39a492333a039330a9f (patch) | |
tree | a5f231d9910fd6b80f48efe3da4bb4039a6a7d24 /.github | |
parent | 06643d811c0e66c8e28b3cdb6138c671abc9e1c1 (diff) |
apt cmds as root in ci/cd
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/go.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7961866..34191de 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -29,8 +29,8 @@ jobs: - name: Install VHS dependencies run: | - apt update - apt install -y ttyd ffmpeg + sudo apt update + sudo apt install -y ttyd ffmpeg - name: Install VHS run: | wget https://github.com/charmbracelet/vhs/releases/download/v0.8.0/vhs_0.8.0_amd64.deb |