feat: Create Neogen semver
This commit is contained in:
28
.github/workflows/semver.yml
vendored
Normal file
28
.github/workflows/semver.yml
vendored
Normal 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 }}
|
||||
Reference in New Issue
Block a user