Skip to content

Commit 7629bfa

Browse files
committed
fix: use tarball instead of AppImage for Neovim installation
AppImage extraction fails in GitHub Actions due to missing FUSE. Switch to using the pre-extracted tarball for simpler installation.
1 parent a542910 commit 7629bfa

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,9 @@ jobs:
2020
shell: bash
2121
run: |
2222
mkdir -p ~/nvim
23-
wget -q https://github.com/neovim/neovim/releases/download/stable/nvim.appimage -O ~/nvim/nvim.appimage
24-
cd ~/nvim
25-
chmod a+x ./nvim.appimage
26-
./nvim.appimage --appimage-extract
27-
echo "$HOME/nvim/squashfs-root/usr/bin/" >> $GITHUB_PATH
23+
wget -q https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.tar.gz
24+
tar -C ~/nvim -xzf nvim-linux64.tar.gz --strip-components=1
25+
echo "$HOME/nvim/bin" >> $GITHUB_PATH
2826
2927
- name: Neovim version
3028
run: nvim --version

0 commit comments

Comments
 (0)