-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add luarocks release workflow (#93)
- Loading branch information
Showing
1 changed file
with
33 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,33 @@ | ||
name: luarocks | ||
|
||
on: | ||
push: | ||
tags: | ||
- "*" | ||
# Will test a local install without uploading to luarocks | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
luarocks-upload: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Luarocks upload | ||
uses: nvim-neorocks/luarocks-tag-release@v5 | ||
with: | ||
name: flatten.nvim | ||
labels: | | ||
neovim | ||
summary: Remotely open files and command output from :term, Wezterm and Kitty in your current Neovim instance. | ||
detailed_description: | | ||
Flatten.nvim leverages Neovim's builtin RPC to allow seamless remote opening of files | ||
and command output from other terminal sessions, similar to the functionality of IDEs | ||
and vsc*de. | ||
Edit git commits, use existing nvim sessions as your $VISUAL editor for edit-exec, | ||
and more. | ||
license: MIT | ||
|
||
env: | ||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} |