mirror of
https://github.com/norcalli/nvim-colorizer.lua.git
synced 2026-09-13 00:06:16 -04:00
Add workflow to publish this plugin to LuaRocks
This commit is contained in:
parent
36c610a971
commit
648370a94d
18
.github/workflows/release.yml
vendored
Normal file
18
.github/workflows/release.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
name: "release"
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
jobs:
|
||||
luarocks-upload:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: LuaRocks Upload
|
||||
uses: nvim-neorocks/luarocks-tag-release@v4
|
||||
env:
|
||||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
|
||||
with:
|
||||
detailed_description: |
|
||||
A high-performance color highlighter for Neovim which has no external dependencies!
|
||||
Written in performant Luajit.
|
||||
|
|
@ -10,6 +10,8 @@ A high-performance color highlighter for Neovim which has **no external dependen
|
|||
|
||||
## Installation and Usage
|
||||
|
||||
[](https://luarocks.org/modules/norcalli/nvim-colorizer.lua)
|
||||
|
||||
Requires Neovim >= 0.4.0 and `set termguicolors` (I'm looking into relaxing
|
||||
these constraints). If you don't have true color for your terminal or are
|
||||
unsure, [read this excellent guide](https://github.com/termstandard/colors).
|
||||
|
|
|
|||
Loading…
Reference in a new issue