Skip to content

ci: add name to install neovim step #3

ci: add name to install neovim step

ci: add name to install neovim step #3

Workflow file for this run

name: Update docs
on:
push:
branches:
- master
workflow_dispatch:
jobs:
update-docs:
name: Update README and doc
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install neovim
uses: rhysd/action-setup-vim@v1
with:
neovim: true
version: stable
- name: Make document
run: |
make document
- name: Push changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "auto-generate document"
commit_user_name: "github-actions[bot]"
commit_user_email: "github-actions[bot]@users.noreply.github.com"
commit_author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"