Compare commits
1 commit
build/dev-
...
build/luar
| Author | SHA1 | Date | |
|---|---|---|---|
| d393deec8b |
3 changed files with 43 additions and 1 deletions
21
.github/workflows/luarocks.yml
vendored
Normal file
21
.github/workflows/luarocks.yml
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
name: luarocks
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
uses: ./.github/workflows/tests.yml
|
||||
|
||||
publish:
|
||||
needs: tests
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: nvim-neorocks/luarocks-tag-release@v7
|
||||
env:
|
||||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
|
||||
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
|
@ -35,7 +35,7 @@ jobs:
|
|||
uses: JohnnyMorganz/stylua-action@v4
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
version: v2.0.2
|
||||
version: v2.1.0
|
||||
args: --check lua tests
|
||||
|
||||
typecheck:
|
||||
|
|
|
|||
21
oil.nvim-scm-1.rockspec
Normal file
21
oil.nvim-scm-1.rockspec
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
rockspec_format = '3.0'
|
||||
package = 'oil.nvim'
|
||||
version = 'scm-1'
|
||||
|
||||
source = {
|
||||
url = 'git+https://github.com/barrettruth/oil.nvim.git',
|
||||
}
|
||||
|
||||
description = {
|
||||
summary = 'Neovim file explorer: edit your filesystem like a buffer',
|
||||
homepage = 'https://github.com/barrettruth/oil.nvim',
|
||||
license = 'MIT',
|
||||
}
|
||||
|
||||
dependencies = {
|
||||
'lua >= 5.1',
|
||||
}
|
||||
|
||||
build = {
|
||||
type = 'builtin',
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue