diff options
author | James McCoy <jamessan@jamessan.com> | 2022-12-09 09:32:34 -0500 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2022-12-09 09:56:56 -0500 |
commit | 2ecb401f8b9aac857e6add59f78d481d91a7ad3c (patch) | |
tree | 5d2edc2c17376d4d5ab6c716d24d10f6ae3f787e | |
parent | 3cf0131c5cc6e9d9df0c632646e39301f107e5a8 (diff) | |
download | rneovim-2ecb401f8b9aac857e6add59f78d481d91a7ad3c.tar.gz rneovim-2ecb401f8b9aac857e6add59f78d481d91a7ad3c.tar.bz2 rneovim-2ecb401f8b9aac857e6add59f78d481d91a7ad3c.zip |
fix(vim-patches): ensure libfuse is installed
-rw-r--r-- | .github/workflows/vim-patches.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/vim-patches.yml b/.github/workflows/vim-patches.yml index 7eebcb4a15..159eb09e7c 100644 --- a/.github/workflows/vim-patches.yml +++ b/.github/workflows/vim-patches.yml @@ -2,6 +2,7 @@ name: vim-patches on: schedule: - cron: '3 3 * * *' + workflow_dispatch: jobs: update-vim-patches: @@ -24,6 +25,8 @@ jobs: path: ${{ env.VIM_SOURCE_DIR }} fetch-depth: 0 + - run: sudo apt-get install libfuse2 + - run: | gh release download -R neovim/neovim -p nvim.appimage chmod a+x nvim.appimage |