diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..58b94a8 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,21 @@ +name: "release" +on: + push: + tags: + - "*" +jobs: + luarocks-upload: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + - name: LuaRocks Upload + uses: nvim-neorocks/luarocks-tag-release@v5 + env: + LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} + with: + summary: | + A collection of common configurations for Neovim's colorschemes + plugins. + detailed_description: | + This plugin allows for installing colorschemes. + licence: "MIT" diff --git a/colorscheme-installer-scm-1.rockspec b/colorscheme-installer-scm-1.rockspec new file mode 100644 index 0000000..78262bf --- /dev/null +++ b/colorscheme-installer-scm-1.rockspec @@ -0,0 +1,28 @@ +local _MODREV, _SPECREV = "scm", "-1" + +rockspec_format = "3.0" +package = "colorscheme-installer" +version = _MODREV .. _SPECREV + +description = { + summary = "A collection of common configurations for Neovim's colorschemes plugins.", + detailed = "This plugin allows for installing colorschemes.", + homepage = "https://github.com/AlejandroSuero/colorscheme-installer.nvim", + license = "MIT", + labels = { "neovim", "colorscheme", "neovim-colorscheme" }, +} + +dependencies = { + "lua == 5.1", +} + +source = { + url = "git://github.com/AlejandroSuero/colorscheme-installer.nvim", +} + +build = { + type = "builtin", + copy_directories = { + "doc", + }, +}