-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(luarocks): luarocks upload action
- Loading branch information
1 parent
d3d22f8
commit 18e24ac
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: LuaRocks release | ||
on: | ||
push: | ||
tags: # Will upload to luarocks.org when a tag is pushed | ||
- "*" | ||
pull_request: # Will test a local install without uploading to luarocks.org | ||
|
||
jobs: | ||
luarocks-release: | ||
runs-on: ubuntu-latest | ||
name: LuaRocks upload | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: LuaRocks Upload | ||
uses: nvim-neorocks/luarocks-tag-release@v7 | ||
env: | ||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
rockspec_format = "3.0" | ||
package = "wormhole.nvim" | ||
version = "scm-1" | ||
|
||
local user = "NStefan002" | ||
|
||
source = { | ||
url = "git+https://github.com/" .. user .. "/" .. package, | ||
} | ||
description = { | ||
homepage = "https://github.com/" .. user .. "/" .. package, | ||
labels = { "neovim", "neovim-plugin" }, | ||
license = "MIT", | ||
summary = "Assign labels to windows and jump effortlessly with a single keypress.", | ||
} | ||
dependencies = {} | ||
test_dependencies = {} | ||
build = { | ||
type = "builtin", | ||
copy_directories = { | ||
"plugin", | ||
}, | ||
} |