Skip to content

ci: Update release workflow #13

ci: Update release workflow

ci: Update release workflow #13

Workflow file for this run

# on:
# workflow_dispatch:
# inputs:
# version:
# type: string
# description: 'Version'
# required: true
on:
push:
branches:
- feat/changelog
permissions:
contents: write
pull-requests: write
name: release
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_TOKEN }}
- name: Install Neovim
uses: rhysd/action-setup-vim@v1
id: neovim
with:
neovim: true
version: v0.10.3
- name: Update changelog
run: |
nvim -l scripts/generate_changelog.lua 0.4.2
# nvim -l scripts/generate_changelog.lua ${{ github.event.inputs.version }}
- name: Print changelog
run: |
cat docs/changelog.org