File tree 2 files changed +22
-10
lines changed
2 files changed +22
-10
lines changed Original file line number Diff line number Diff line change
1
+ name : " release"
2
+ on :
3
+ push :
4
+ tags :
5
+ - ' v*'
6
+ jobs :
7
+ luarocks-upload :
8
+ runs-on : ubuntu-22.04
9
+ steps :
10
+ - uses : actions/checkout@v3
11
+ - name : LuaRocks Upload
12
+ uses : nvim-neorocks/luarocks-tag-release@v3
13
+ env :
14
+ LUAROCKS_API_KEY : ${{ secrets.LUAROCKS_API_KEY }}
15
+ with :
16
+ detailed_description : |
17
+ A completion engine plugin for neovim written in Lua.
18
+ Completion sources are installed from external repositories and "sourced".
19
+
Original file line number Diff line number Diff line change @@ -18,21 +18,14 @@ dependencies = {
18
18
}
19
19
20
20
source = {
21
- url = ' http://github.com/hrsh7th/nvim-cmp/archive/v' .. MODREV .. ' .zip' ,
22
- dir = ' nvim-cmp-' .. MODREV ,
21
+ url = ' git://github.com/hrsh7th/nvim-cmp' ,
23
22
}
24
23
25
- if MODREV == ' scm' then
26
- source = {
27
- url = ' git://github.com/hrsh7th/nvim-cmp' ,
28
- }
29
- end
30
-
31
24
build = {
32
25
type = ' builtin' ,
33
26
copy_directories = {
34
27
' autoload' ,
35
- ' doc ' ,
36
- ' plugin '
28
+ ' plugin ' ,
29
+ ' doc '
37
30
}
38
31
}
You can’t perform that action at this time.
0 commit comments