diff options
author | James McCoy <jamessan@jamessan.com> | 2022-12-09 19:49:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-09 19:49:36 -0500 |
commit | f96fb23de62f9539bf254cc1a4e99d1da8b71994 (patch) | |
tree | 349d0a39f0f63f463f2e78635b5f1b2d5eeadc6f | |
parent | 7faf8a45e8c48d5ab1b6096d6b3e23c84bb3d7c6 (diff) | |
parent | 2ecb401f8b9aac857e6add59f78d481d91a7ad3c (diff) | |
download | rneovim-f96fb23de62f9539bf254cc1a4e99d1da8b71994.tar.gz rneovim-f96fb23de62f9539bf254cc1a4e99d1da8b71994.tar.bz2 rneovim-f96fb23de62f9539bf254cc1a4e99d1da8b71994.zip |
Merge pull request #21363 from jamessan/fuse-vim-patches
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 |