summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorkylo252 <[email protected]>2022-06-26 13:53:44 +0200
committerGitHub <[email protected]>2022-06-26 13:53:44 +0200
commit12f8798bb05038a6269c6e50fe20c53ac47f75e3 (patch)
treee23443758b9e119f77a4ea68bd5a398549bd4126 /.github
parent9b528ecf57c58ab282d89f31b4e963662b1ace73 (diff)
fix(installer): always use check shallow clones (#2763)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/install.yaml12
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/install.yaml b/.github/workflows/install.yaml
index 7829644d..e21607ab 100644
--- a/.github/workflows/install.yaml
+++ b/.github/workflows/install.yaml
@@ -35,17 +35,19 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Install neovim binary
- uses: rhysd/action-setup-vim@v1
- with:
- neovim: true
- version: ${{ matrix.neovim }}
+ - name: Install neovim binary from release
+ env:
+ RELEASE_VER: ${{ matrix.neovim }}
+ run: |
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
+ bash ./utils/installer/install-neovim-from-release
- name: Install LunarVim
timeout-minutes: 4
env:
LV_BRANCH: ${{ github.head_ref || github.ref_name }}
LV_REMOTE: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
+ LUNARVIM_LOG_LEVEL: "debug"
run: |
export PATH="$HOME/.local/bin:$PATH"