ci: add release workflow to publish new tags to LuaRocks (#1431)

Co-authored-by: hrsh7th <629908+hrsh7th@users.noreply.github.com>
This commit is contained in:
Marc Jakobi
2023-05-01 16:51:18 +02:00
committed by GitHub
parent 0cb4b8a679
commit c3f7c54f6e
2 changed files with 22 additions and 10 deletions

View File

@@ -18,21 +18,14 @@ dependencies = {
}
source = {
url = 'http://github.com/hrsh7th/nvim-cmp/archive/v' .. MODREV .. '.zip',
dir = 'nvim-cmp-' .. MODREV,
url = 'git://github.com/hrsh7th/nvim-cmp',
}
if MODREV == 'scm' then
source = {
url = 'git://github.com/hrsh7th/nvim-cmp',
}
end
build = {
type = 'builtin',
copy_directories = {
'autoload',
'doc',
'plugin'
'plugin',
'doc'
}
}