Skip to content

Commit

Permalink
fix(ci): update neovim macOS distribution naming
Browse files Browse the repository at this point in the history
  • Loading branch information
ful1e5 committed May 2, 2024
1 parent b09fa05 commit 7b97aa5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/neovim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ jobs:
- uses: actions/checkout@v4
- name: Install Neovim
run: |
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-macos.tar.gz
xattr -c ./nvim-macos.tar.gz
tar xzvf nvim-macos.tar.gz &> /dev/null
ln -s $(pwd)/nvim-macos/bin/nvim /usr/local/bin/nvim
wget -q https://github.com/neovim/neovim/releases/download/nightly/nvim-macos-x86_64.tar.gz
xattr -c ./nvim-macos-x86_64.tar.gz
tar xzvf nvim-macos-x86_64.tar.gz &> /dev/null
ln -s $(pwd)/nvim-macos-x86_64/bin/nvim /usr/local/bin/nvim
- name: Run neovim
run: |
nvim --version
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changes

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

### Issues Fix

Expand Down

0 comments on commit 7b97aa5

Please sign in to comment.