ci: fix with git pull

This commit is contained in:
Folke Lemaitre
2023-04-22 09:41:00 +02:00
parent 802207d814
commit d9f7ea41a3

View File

@@ -35,6 +35,9 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Update Git
shell: bash
run: git pull
- name: Install Neovim - name: Install Neovim
shell: bash shell: bash
run: | run: |
@@ -55,6 +58,9 @@ jobs:
if: ${{ github.ref == 'refs/heads/main' }} if: ${{ github.ref == 'refs/heads/main' }}
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Update Git
shell: bash
run: git pull
- name: panvimdoc - name: panvimdoc
uses: kdheepak/panvimdoc@main uses: kdheepak/panvimdoc@main
with: with:
@@ -83,6 +89,9 @@ jobs:
release-type: simple release-type: simple
package-name: tokyonight.nvim package-name: tokyonight.nvim
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Update Git
shell: bash
run: git pull
- name: tag stable versions - name: tag stable versions
if: ${{ steps.release.outputs.release_created }} if: ${{ steps.release.outputs.release_created }}
run: | run: |