Skip to content

Commit

Permalink
fix(action): build action syntax error
Browse files Browse the repository at this point in the history
add a job step for install neovim plugins threw shell command
  • Loading branch information
roeybenarieh authored Dec 9, 2023
1 parent f4e94b5 commit 844f836
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build_nvim_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ jobs:
run: cd /home/runner/; mkdir -p .config/nvim; mv $GITHUB_WORKSPACE/* .config/nvim


- name: install neovim and its plugins
- name: install neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true

- name: install nvim plugins
# open nvim without UI, call ":Lazy install" and quit
run: nvim --headless -c "Lazy install" -c "qall"

- name: compress nvim generated folders
run: tar -czf build.tar.gz -C /home/runner/ .config/nvim/ .local/share/nvim
Expand Down

0 comments on commit 844f836

Please sign in to comment.