Trying to find out what is going wrong with bin in ubuntu22.04
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:03:26 +01:00
parent db8258bc39
commit 60f052dcc3
1 changed files with 5 additions and 5 deletions

View File

@ -21,11 +21,11 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
if [ "$(uname -m)" == "x86_64" ]; then if [ "$(uname -m)" == "x86_64" ]; then
wget -O /bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage wget -O /usr/bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
chmod +x /bin/nvim chmod +x /usr/bin/nvim
else else
wget -O /bin/nvim https://www.nickr.eu/data/nvim wget -O /usr/bin/nvim https://www.nickr.eu/data/nvim
chmod +x /bin/nvim chmod +x /usr/bin/nvim
fi fi
- name: Load plugin into neovim - name: Load plugin into neovim
@ -35,5 +35,5 @@ jobs:
- name: Run neovim - name: Run neovim
run: | run: |
ls bin ls /
nvim -es nvim -es