diff options
| author | copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> | 2026-01-04 03:23:55 +0000 |
|---|---|---|
| committer | copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> | 2026-01-04 03:23:55 +0000 |
| commit | 9e6356f3df62e73f63946c5658b5fd4b37599014 (patch) | |
| tree | d43811c85c5cac0b354b205fd38a4e4de02462ec /.github | |
| parent | 625d99ad598e5d84e71b99e3eeb6de2a6f1a02db (diff) | |
| download | a4-9e6356f3df62e73f63946c5658b5fd4b37599014.tar.xz a4-9e6356f3df62e73f63946c5658b5fd4b37599014.zip | |
Install Neovim from GitHub releases instead of apt
Co-authored-by: ThePrimeagen <4458174+ThePrimeagen@users.noreply.github.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/makefile.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index d6bac0e..9d2b733 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -16,8 +16,10 @@ jobs: - name: Install Neovim run: | - sudo apt-get update - sudo apt-get install -y neovim + wget -q https://github.com/neovim/neovim/releases/download/v0.10.3/nvim-linux64.tar.gz + tar xzf nvim-linux64.tar.gz + sudo mv nvim-linux64 /opt/nvim + sudo ln -s /opt/nvim/bin/nvim /usr/local/bin/nvim - name: Install luarocks run: | |
