Skip to content

Commit 7b97aa5

Browse files
committed
fix(ci): update neovim macOS distribution naming
1 parent b09fa05 commit 7b97aa5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/neovim.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
- uses: actions/checkout@v4
4848
- name: Install Neovim
4949
run: |
50-
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-macos.tar.gz
51-
xattr -c ./nvim-macos.tar.gz
52-
tar xzvf nvim-macos.tar.gz &> /dev/null
53-
ln -s $(pwd)/nvim-macos/bin/nvim /usr/local/bin/nvim
50+
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-macos-x86_64.tar.gz
51+
xattr -c ./nvim-macos-x86_64.tar.gz
52+
tar xzvf nvim-macos-x86_64.tar.gz &> /dev/null
53+
ln -s $(pwd)/nvim-macos-x86_64/bin/nvim /usr/local/bin/nvim
5454
- name: Run neovim
5555
run: |
5656
nvim --version

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
### Changes
1818

1919
- chore(ci): use `actions/checkout@v4`
20+
- fix(ci): update neovim macOS distribution naming
2021

2122
### Issues Fix
2223

0 commit comments

Comments
 (0)