not using /bin anymore
Try loading the plugin into nvim / build (ubuntu-22.04) (push) Failing after 19s Details

This commit is contained in:
Yannick Reiß 2024-12-18 11:07:29 +01:00
parent 21fcc956af
commit 721666f742
1 changed files with 5 additions and 5 deletions

View File

@ -22,11 +22,11 @@ jobs:
run: |
mkdir -p /bin
if [ "$(uname -m)" == "x86_64" ]; then
wget -O /bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
chmod +x /bin/nvim
wget -O ~/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
chmod +x ~/nvim
else
wget -O /bin/nvim https://www.nickr.eu/data/nvim
chmod +x /bin/nvim
wget -O ~/nvim https://www.nickr.eu/data/nvim
chmod +x ~/nvim
fi
- name: Load plugin into neovim
@ -36,4 +36,4 @@ jobs:
- name: Run neovim
run: |
/bin/nvim -es
~/nvim -es