Skip to content

Commit

Permalink
feat(ci): added publishing releases
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroSuero committed May 8, 2024
1 parent 24e6ff9 commit 17eb514
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -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"
28 changes: 28 additions & 0 deletions colorscheme-installer-scm-1.rockspec
Original file line number Diff line number Diff line change
@@ -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",
},
}

0 comments on commit 17eb514

Please sign in to comment.