From 21fcc956af86800fe583c79cdc711fb638608e86 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Wed, 18 Dec 2024 11:05:47 +0100 Subject: [PATCH] Creating bin in case of error, calling it directly --- .gitea/workflows/test.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 01a8a4b..c6b1bab 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -20,12 +20,13 @@ jobs: - name: Install dependencies run: | + mkdir -p /bin if [ "$(uname -m)" == "x86_64" ]; then - wget -O /usr/bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage - chmod +x /usr/bin/nvim + wget -O /bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage + chmod +x /bin/nvim else - wget -O /usr/bin/nvim https://www.nickr.eu/data/nvim - chmod +x /usr/bin/nvim + wget -O /bin/nvim https://www.nickr.eu/data/nvim + chmod +x /bin/nvim fi - name: Load plugin into neovim @@ -35,5 +36,4 @@ jobs: - name: Run neovim run: | - ls / - nvim -es + /bin/nvim -es