Creating bin in case of error, calling it directly
Try loading the plugin into nvim / build (ubuntu-22.04) (push) Failing after 53s Details

This commit is contained in:
Yannick Reiß 2024-12-18 11:05:47 +01:00
parent 60f052dcc3
commit 21fcc956af
1 changed files with 6 additions and 6 deletions

View File

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