aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/release.yml
blob: e6dddaf8a63ceda508bc89b1c7ff4f3cd75df727 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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"