Skip to content

Commit

Permalink
ci: update for Neovim release tarball naming change
Browse files Browse the repository at this point in the history
  • Loading branch information
laniakea64 committed Jan 29, 2025
1 parent 0f7d26d commit 5f43e32
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,14 @@ jobs:
vim --version
- name: Download Neovim
run: gh -R neovim/neovim release download -p nvim-linux64.tar.gz
run: gh -R neovim/neovim release download -p nvim-linux-x86_64.tar.gz
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Setup Neovim
run: |
tar -C "$HOME" -xaf nvim-linux64.tar.gz
"$HOME/nvim-linux64/bin/nvim" --version
tar -C "$HOME" -xaf nvim-linux-x86_64.tar.gz
"$HOME/nvim-linux-x86_64/bin/nvim" --version
- name: Rust Toolchain Info
run: |
Expand Down Expand Up @@ -82,6 +82,6 @@ jobs:
- name: Test Neovim
run: |
export TEST_VIM="$HOME/nvim-linux64/bin/nvim"
export TEST_VIM="$HOME/nvim-linux-x86_64/bin/nvim"
cargo run
cargo run --bin=test-ftdetect

0 comments on commit 5f43e32

Please sign in to comment.