-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: add release workflow to publish new tags to LuaRocks
NOTE: This requires a LUAROCKS_API_KEY. See the [luarocks-tag-release readme](https://github.com/nvim-neorocks/luarocks-tag-release#prerequisites)
- Loading branch information
Showing
2 changed files
with
24 additions
and
8 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,23 @@ | ||
name: "release" | ||
on: | ||
push: | ||
tags: | ||
- 'v*' | ||
jobs: | ||
luarocks-upload: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: LuaRocks Upload | ||
uses: nvim-neorocks/luarocks-tag-release@v2.0.0 | ||
env: | ||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }} | ||
with: | ||
detailed_description: | | ||
A completion engine plugin for neovim written in Lua. | ||
Completion sources are installed from external repositories and "sourced". | ||
copy_directories: | ||
autoload | ||
plugin | ||
doc | ||
|
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