From 12f8798bb05038a6269c6e50fe20c53ac47f75e3 Mon Sep 17 00:00:00 2001 From: kylo252 <59826753+kylo252@users.noreply.github.com> Date: Sun, 26 Jun 2022 13:53:44 +0200 Subject: fix(installer): always use check shallow clones (#2763) --- .github/workflows/install.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to '.github/workflows') 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" -- cgit v1.2.3