mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2025-12-25 07:21:00 +01:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
710 B
YAML
22 lines
710 B
YAML
name: "release"
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
jobs:
|
|
luarocks-upload:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: LuaRocks Upload
|
|
uses: nvim-neorocks/luarocks-tag-release@v7
|
|
env:
|
|
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
|
|
with:
|
|
summary: "A collection of common configurations for Neovim's built-in language server client."
|
|
detailed_description: |
|
|
This plugin allows for declaratively configuring,
|
|
launching, and initializing language servers you have installed on your system.
|
|
Language server configurations are community-maintained.
|
|
license: "Apache/2.0"
|