Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "release"
on:
push:
tags:
- '*'
jobs:
luarocks-upload:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: LuaRocks Upload
uses: nvim-neorocks/[email protected]
env:
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
with:
detailed_description: |
nvim-dap allows you to:

* Launch an application to debug
* Attach to running applications and debug them
* Set breakpoints and step through code
* Inspect the state of the application
copy_directories:
doc
plugin
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

## Installation

[![LuaRocks](https://img.shields.io/luarocks/v/mfussenegger/nvim-dap?logo=lua&color=purple)](https://luarocks.org/modules/mfussenegger/nvim-dap)

- Install nvim-dap like any other Neovim plugin:
- `git clone https://github.com/mfussenegger/nvim-dap.git ~/.config/nvim/pack/plugins/start/nvim-dap`
- Or with [vim-plug][11]: `Plug 'mfussenegger/nvim-dap'`
Expand Down
40 changes: 40 additions & 0 deletions nvim-dap-scm-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
local _MODREV, _SPECREV = 'scm', '-1'
rockspec_format = "3.0"
package = 'nvim-dap'
version = _MODREV .. _SPECREV

description = {
summary = 'Debug Adapter Protocol client implementation for Neovim.',
detailed = [[
nvim-dap allows you to:
* Launch an application to debug
* Attach to running applications and debug them
* Set breakpoints and step through code
* Inspect the state of the application
]],
labels = {
'neovim',
'plugin',
'debug-adapter-protocol',
'debugger',
},
homepage = 'https://github.com/mfussenegger/nvim-dap',
license = 'GPL-3.0',
}

dependencies = {
'lua >= 5.1, < 5.4',
}

source = {
url = 'git://github.com/mfussenegger/nvim-dap',
}

build = {
type = 'builtin',
copy_directories = {
'doc',
'plugin',
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this have to include the lua folder too, or is that picked up by default?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"lua" and "lib" (and some other) directories are picked up by default.

},
}