Skip to content

Commit 09cce83

Browse files
committed
fix: use specific Neovim version instead of 'stable'
GitHub releases don't have a 'stable' tag. Use v0.10.0 which is the current stable release.
1 parent 1bd4041 commit 09cce83

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,9 @@ jobs:
2020
shell: bash
2121
run: |
2222
mkdir -p ~/nvim
23-
wget https://github.com/neovim/neovim/releases/download/stable/nvim-linux64.tar.gz -O nvim-linux64.tar.gz
23+
wget https://github.com/neovim/neovim/releases/download/v0.10.0/nvim-linux64.tar.gz -O nvim-linux64.tar.gz
2424
tar -C ~/nvim -xzf nvim-linux64.tar.gz --strip-components=1
2525
echo "$HOME/nvim/bin" >> $GITHUB_PATH
26-
ls -la ~/nvim/bin/
2726
2827
- name: Neovim version
2928
run: nvim --version

0 commit comments

Comments
 (0)