Skip to content

Commit 4c9e4b7

Browse files
committed
Handle libfuse rename on Ubuntu 24.04 runners
1 parent 6b0e882 commit 4c9e4b7

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/build-packages.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ jobs:
105105
if: runner.os == 'Linux'
106106
run: |
107107
sudo apt-get update
108-
sudo apt-get install --no-install-recommends -y rpm libarchive-tools libfuse2
108+
sudo apt-get install --no-install-recommends -y rpm libarchive-tools
109+
if ! sudo apt-get install --no-install-recommends -y libfuse2; then
110+
sudo apt-get install --no-install-recommends -y libfuse2t64
111+
fi
109112
110113
- name: Install dependencies
111114
run: npm ci

0 commit comments

Comments
 (0)