feat: Create Neogen semver

This commit is contained in:
danymat
2022-02-08 20:08:12 +01:00
parent 767169cc43
commit 77b5c1a535
5 changed files with 66 additions and 0 deletions

28
.github/workflows/semver.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
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 }}