From d9f7ea41a3135aa264aff372686c054d356b4a85 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Sat, 22 Apr 2023 09:41:00 +0200 Subject: [PATCH] ci: fix with git pull --- .github/workflows/ci.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c25f84b..9a6357e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,9 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 + - name: Update Git + shell: bash + run: git pull - name: Install Neovim shell: bash run: | @@ -55,6 +58,9 @@ jobs: if: ${{ github.ref == 'refs/heads/main' }} steps: - uses: actions/checkout@v3 + - name: Update Git + shell: bash + run: git pull - name: panvimdoc uses: kdheepak/panvimdoc@main with: @@ -83,6 +89,9 @@ jobs: release-type: simple package-name: tokyonight.nvim - uses: actions/checkout@v3 + - name: Update Git + shell: bash + run: git pull - name: tag stable versions if: ${{ steps.release.outputs.release_created }} run: |