29 lines
590 B
YAML
29 lines
590 B
YAML
name: Generates Neogen tag
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
gen_tag:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
version:
|
|
- nightly
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Install Neovim
|
|
uses: rhysd/action-setup-vim@v1
|
|
id: neovim
|
|
with:
|
|
neovim: true
|
|
version: ${{ matrix.version }}
|
|
- uses: actions/checkout@v1 # related: actions/checkout#290
|
|
- name: Run tag_gen
|
|
run: make tag
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|